blob: 200ba845542fe614a1737497d4d78346c2cd45f7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
name: Node
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci
- run: npm test
- run: npm run dist
|