We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0dc3b4 commit a2ce255Copy full SHA for a2ce255
.circleci/config.yml
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: Node.js CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'master'
7
+ pull_request:
8
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
21
+ name: Build + Test
22
23
24
25
26
27
+ - run: yarn
28
+ - run: yarn build
29
+ - run: yarn test-ci
0 commit comments