Skip to content

update meta tag

update meta tag #6

Workflow file for this run

name: eslint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '20.11.0'
- uses: actions/cache@v3
id: npm_cache_id
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: install
if: steps.cache.outputs.cache-hit != 'true'
run: npm install
- name: eslint
run: npm run lint
- name: prettier
run: npm run format:check