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.
2 parents a8af5b0 + 4592ca5 commit 9462888Copy full SHA for 9462888
3 files changed
.circleci/config.yml
.github/workflows/test.yml
@@ -0,0 +1,29 @@
1
+name: test
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
14
+ - uses: actions/setup-node@v4
15
+ with:
16
+ node-version: 20
17
+ cache: npm
18
19
+ - name: Install dependencies
20
+ run: npm install
21
22
+ - name: List dependency versions
23
+ run: |
24
+ echo "npm: $(npm --version)"
25
+ echo "node: $(node --version)"
26
+ npm ls || true
27
28
+ - name: Run tests
29
+ run: npm run test
.gitignore
@@ -4,7 +4,7 @@ npm-debug.log*
*.sublime*
.*
-!.circleci
+!.github
!.gitignore
!.gitattributes
!.npmignore
0 commit comments