Skip to content

build(deps): bump actions/checkout to v4 #244

build(deps): bump actions/checkout to v4

build(deps): bump actions/checkout to v4 #244

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16.x'
cache: yarn
- name: Install dependencies
run: yarn install
- name: Check formatting
run: yarn format:check
- name: Lint
run: yarn lint --quiet
- name: Test
run: yarn test