Skip to content

Commit e012c70

Browse files
Merge pull request #1 from pulsar-edit/enable-ci
Setup GitHub Actions CI
2 parents b450ce5 + 2f93363 commit e012c70

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: ['master']
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
env:
12+
NODE_VERSION: 16
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: ${{ env.NODE_VERSION }}
18+
- name: Install Dependencies
19+
run: npm install
20+
- name: Test
21+
run: npm run test

0 commit comments

Comments
 (0)