Skip to content

Cleanup and improvements #2

Cleanup and improvements

Cleanup and improvements #2

Workflow file for this run

# Run the tests
name: CI
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- name: Install NPM packages
run: npm ci
- name: Run tests
run: npm test