Skip to content

Commit 38fcbff

Browse files
committed
ci: create initial CI pipeline
Signed-off-by: Rifa Achrinza <25147899+achrinza@users.noreply.github.com>
1 parent bf2d7f5 commit 38fcbff

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
pull_request: {}
6+
7+
name: CI
8+
9+
jobs:
10+
test:
11+
name: Test
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
16+
- name: Install Dependencies
17+
run: npm ci --ignore-scripts
18+
- name: Build Blog
19+
run: npm run-script build

0 commit comments

Comments
 (0)