We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82d479f commit b29de4bCopy full SHA for b29de4b
.github/workflows/node.js.yml
.github/workflows/yarn.yml
@@ -0,0 +1,22 @@
1
+name: CI
2
+on: [push]
3
+
4
+jobs:
5
+ build:
6
+ name: Test
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/[email protected]
10
+ - name: Set Node.js 22.x
11
+ uses: actions/setup-node@v3
12
+ with:
13
+ node-version: 22.x
14
15
+ - name: Run install
16
+ uses: borales/actions-yarn@v5
17
18
+ cmd: install # will run `yarn install` command
19
+ - name: Test the app
20
21
22
+ cmd: test # will run `yarn test` command
0 commit comments