Skip to content

fix(ci): use correct pr number during teardown #66

fix(ci): use correct pr number during teardown

fix(ci): use correct pr number during teardown #66

Workflow file for this run

name: Lint
on:
push:
branches: [main, dev]
pull_request:
branches: [dev]
concurrency:
cancel-in-progress: true
group: lint-${{ github.ref }}
jobs:
code:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: "yarn"
- name: Install dependencies
run: |
yarn --frozen-lockfile
- name: Lint
run: |
yarn lint