Skip to content

Commit 8af9c8d

Browse files
committed
chore: Check build on PR
1 parent e7bda68 commit 8af9c8d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/check_build.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Check build
2+
on: [push]
3+
4+
jobs:
5+
check:
6+
name: Check build
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
- name: Setup Node.js
13+
uses: actions/setup-node@v1
14+
with:
15+
node-version: 16.x
16+
- name: Install dependencies
17+
run: npm ci
18+
- name: Build
19+
run: npm run build

0 commit comments

Comments
 (0)