mirror of
https://github.com/therootcompany/asn1.js.git
synced 2025-03-15 13:00:38 +00:00
18 lines
383 B
YAML
18 lines
383 B
YAML
name: build
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: "14"
|
|
- run: npm install
|
|
- run: npm run build
|
|
- name: check dist files
|
|
run: |
|
|
[[ $(git status --porcelain | tee /dev/stderr | wc -l) -eq 0 ]]
|
|
- run: npm test
|