Skip to content

Commit 6ddad8e

Browse files
authored
Merge pull request #15 from CodinGame/check-build-on-PR
Check build on PR
2 parents e7bda68 + 8af9c8d commit 6ddad8e

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)