Skip to content

Update ESLint rules #44

Update ESLint rules

Update ESLint rules #44

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 20.x
- uses: actions/cache@v2
id: yarn-cache
with:
path: |
node_modules
~/.cache/ms-playwright
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
- name: Install
run: yarn
- name: Run tests
run: yarn test
- name: Lint
run: yarn lint
- name: Build
run: yarn build