Skip to content

Commit bb48a97

Browse files
authored
ci: move to GitHub actions (#57)
1 parent 6df3141 commit bb48a97

File tree

4 files changed

+21
-15
lines changed

4 files changed

+21
-15
lines changed

.circleci/Dockerfile

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

.circleci/config.yml

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

.dockerignore

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

.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+
on:
3+
- push
4+
- pull_request
5+
jobs:
6+
test:
7+
name: Node.js ${{ matrix.node-version }}
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
node-version:
12+
- 16
13+
- 14
14+
- 12
15+
steps:
16+
- uses: actions/checkout@v2
17+
- uses: actions/setup-node@v1
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- run: npm install
21+
- run: npm test

0 commit comments

Comments
 (0)