Skip to content

Bump actions/checkout from 3 to 4 #469

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #469

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.JS
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test