Skip to content

Update typescript eslint #27

Update typescript eslint

Update typescript eslint #27

Workflow file for this run

name: CI
on: pull_request
jobs:
ci:
name: check code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn install
- run: yarn prettier:check
- run: yarn eslint
- run: yarn test
- run: yarn build