Skip to content

Run tests on GitHub Actions #1

Run tests on GitHub Actions

Run tests on GitHub Actions #1

Workflow file for this run

name: Tests
on: push
jobs:
rspec:
runs-on: ubuntu-latest
name: Tests
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm test