Skip to content

Update node packages and use Node 20 LTS in CI #51

Update node packages and use Node 20 LTS in CI

Update node packages and use Node 20 LTS in CI #51

Workflow file for this run

name: Run tests
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/Iron'
- name: Run ci
run: |
npm install
npm run ci