Skip to content

Commit e318ea2

Browse files
authored
chore: add build verification (#1)
* chore: add build verification --------- Co-authored-by: Daniel Kimmich <[email protected]>
1 parent b6b5aec commit e318ea2

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/verify-build.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Verify build
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request_target:
6+
types: [ opened, synchronize, reopened ]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v3
14+
15+
- name: install
16+
run: npm ci
17+
18+
- name: build
19+
run: npm run build
20+
21+
test:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v3
26+
27+
- name: install
28+
run: npm ci
29+
30+
- name: test
31+
run: npm run test

0 commit comments

Comments
 (0)