Skip to content

Create Devops Project #726

Create Devops Project

Create Devops Project #726

Workflow file for this run

name: Run tests on push and pull requests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test