Skip to content

Improve build scripts #4

Improve build scripts

Improve build scripts #4

Workflow file for this run

name: Test
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2
with:
node-version: "14"
- name: Install packages
run: npm install
- name: Run tests
run: npm test
- uses: ./.github/actions/build