We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bcbe3a commit b66dfa5Copy full SHA for b66dfa5
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,20 @@
1
+name: TEST
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version: 20
16
+ - run: npm install
17
+ - run: npm run build
18
+ - run: node dist/index.js
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments