Skip to content

fix URLs

fix URLs #108

Workflow file for this run

#
# A GitHub workflow to run NPM based builds and tests for every push
#
# help:
# - https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
#
name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm test