Skip to content

Commit 0a8e701

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

File tree

3 files changed

+191
-313
lines changed

3 files changed

+191
-313
lines changed

.circleci/config.yml

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

.github/workflows/ci.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
lint:
20+
runs-on: ubuntu-22.04
21+
name: Lint
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 lint-ts
29+
build:
30+
runs-on: ubuntu-22.04
31+
name: Build + Test
32+
steps:
33+
- uses: actions/checkout@v3
34+
- uses: actions/setup-node@v3
35+
with:
36+
node-version: '20'
37+
- run: yarn
38+
- run: yarn build
39+
- run: yarn test-ci

0 commit comments

Comments
 (0)