Skip to content

Update actions/checkout action to v4 #40

Update actions/checkout action to v4

Update actions/checkout action to v4 #40

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@v4
- uses: actions/setup-node@v3
with:
node-version: 20.8.1
cache: "yarn"
- run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint