Skip to content

Commit 23b29bd

Browse files
committed
Add workflow file.
1 parent 07d04af commit 23b29bd

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/run-scripts.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Run scripts
2+
3+
on: [push]
4+
5+
jobs:
6+
Verify-all-scripts-work:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Check out repository code
10+
uses: actions/checkout@v4
11+
- name: Install dependencies
12+
run: npm ci
13+
- name: lint
14+
run: |
15+
npm run lint
16+
- name: test
17+
run: |
18+
npm run test
19+
- name: "test:cov"
20+
run: |
21+
npm run test:cov
22+
- name: build
23+
run: |
24+
npm run build

0 commit comments

Comments
 (0)