Skip to content

Commit b51b41d

Browse files
authored
Merge pull request #16 from evidence-dev/add-ci
Add CI script
2 parents 6ac1a3d + 49d43ed commit b51b41d

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v3
14+
- name: Set up Node.js
15+
uses: actions/setup-node@v3
16+
with:
17+
node-version: '20'
18+
- name: Install dependencies
19+
run: yarn install
20+
- name: Compile
21+
run: yarn compile
22+
- name: Package
23+
run: yarn package

0 commit comments

Comments
 (0)