Skip to content

Commit e2b6256

Browse files
ci(build): Add frontend build workflow
Signed-off-by: Christoph Wurst <[email protected]>
1 parent b5265fd commit e2b6256

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Diff for: .github/workflows/build.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Build
2+
on: pull_request
3+
jobs:
4+
frontend-build:
5+
runs-on: ubuntu-latest
6+
name: Frontend build
7+
steps:
8+
- uses: actions/checkout@v3
9+
- uses: actions/setup-node@v3
10+
with:
11+
node-version: 16
12+
- run: npm ci
13+
- run: npm run build

0 commit comments

Comments
 (0)