Skip to content

Merge pull request #222 from marcoroth:patch-1 #274

Merge pull request #222 from marcoroth:patch-1

Merge pull request #222 from marcoroth:patch-1 #274

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- '*'
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18']
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run build
- run: npm run test