Skip to content

Update actions/checkout action to v4 #637

Update actions/checkout action to v4

Update actions/checkout action to v4 #637

Workflow file for this run

name: Test and Lint
on:
pull_request:
push:
branches:
- main
jobs:
run-unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.15.0]
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies
run: yarn install-ci
- name: Run unit tests
run: yarn test --coverage