Skip to content

Use the default token #257

Use the default token

Use the default token #257

Workflow file for this run

name: CI
on: pull_request
jobs:
check:
name: Automated checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup environment
uses: actions/setup-node@v3.1.1
with:
node-version: '16'
- name: Install dependencies
run: yarn install --immutable
- name: Lint files
run: yarn lint
- name: Run tests
run: yarn test
- name: Run build
run: yarn build