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