Skip to content

Commit a2ce255

Browse files
committed
ci: use github instead of circleci
1 parent f0dc3b4 commit a2ce255

File tree

3 files changed

+181
-313
lines changed

3 files changed

+181
-313
lines changed

.circleci/config.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Node.js CI
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
pull_request:
8+
branches:
9+
- master
10+
jobs:
11+
info:
12+
runs-on: ubuntu-22.04
13+
name: info
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-node@v3
17+
with:
18+
node-version: '20'
19+
build:
20+
runs-on: ubuntu-22.04
21+
name: Build + Test
22+
steps:
23+
- uses: actions/checkout@v3
24+
- uses: actions/setup-node@v3
25+
with:
26+
node-version: '20'
27+
- run: yarn
28+
- run: yarn build
29+
- run: yarn test-ci

0 commit comments

Comments
 (0)