1
0
mirror of https://github.com/therootcompany/asn1.js.git synced 2025-03-16 13:30:42 +00:00
asn1.js/.github/workflows/build.yml
2024-08-28 21:10:24 -06:00

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