mirror actions to tangled
All checks were successful
All checks were successful
This commit is contained in:
18
.tangled/workflows/audit.yml
Normal file
18
.tangled/workflows/audit.yml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
when:
|
||||||
|
- event: ["push"]
|
||||||
|
branch: ["master"]
|
||||||
|
|
||||||
|
engine: "nixery"
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
nixpkgs:
|
||||||
|
- nodejs
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: "NPM Audit"
|
||||||
|
command: "npm audit"
|
||||||
|
|
||||||
|
clone:
|
||||||
|
skip: false
|
||||||
|
depth: 3
|
||||||
|
submodules: false
|
24
.tangled/workflows/test.yml
Normal file
24
.tangled/workflows/test.yml
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
when:
|
||||||
|
- event: ["push"]
|
||||||
|
branch: ["master"]
|
||||||
|
|
||||||
|
engine: "nixery"
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
nixpkgs:
|
||||||
|
- nodejs
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: "Install dependencies"
|
||||||
|
command: "npm ci"
|
||||||
|
|
||||||
|
- name: "tsc"
|
||||||
|
command: "npm run build && echo 'done.'"
|
||||||
|
|
||||||
|
- name: "tests"
|
||||||
|
command: "npm test"
|
||||||
|
|
||||||
|
clone:
|
||||||
|
skip: false
|
||||||
|
depth: 3
|
||||||
|
submodules: false
|
Reference in New Issue
Block a user