Skip to content

Update actions/deploy-pages action to v4 #583

Update actions/deploy-pages action to v4

Update actions/deploy-pages action to v4 #583

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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies
run: yarn install-ci
- name: Run unit tests
run: yarn test --coverage