Skip to content

0.94.0

0.94.0 #62

Workflow file for this run

name: lint
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up Yarn cache
uses: actions/setup-node@v3
with:
node-version: "18"
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn check:lint
concurrency:
group: check-lint
cancel-in-progress: true
on: push