Skip to content

Pin dependencies

Pin dependencies #177

Workflow file for this run

name: CI
on: [push]
jobs:
javascript-tests:
runs-on: ubuntu-latest
env:
SKIP_YARN_COREPACK_CHECK: true
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
with:
node-version: 20.8.1
cache: "yarn"
- run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint