We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9ccbbf commit e7061ffCopy full SHA for e7061ff
1 file changed
.github/workflows/cmwk.yml
@@ -0,0 +1,20 @@
1
+name: Build and Test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest # Specifies the GitHub-hosted runner
11
+ steps:
12
+ - uses: actions/checkout/@v1.58 # Checks out your code
13
+ - name: Setup Node.js
14
+ uses: actions/setup-node@v1.58
15
+ with:
16
+ node-version: '22'
17
+ - name: Install dependencies
18
+ run: npm install
19
+ - name: Run perl script
20
+ run: ./perlinstall.sh
0 commit comments