Skip to content

Update actions/checkout action to v4 #636

Update actions/checkout action to v4

Update actions/checkout action to v4 #636

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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # 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