Skip to content

Commit e7061ff

Browse files
authored
Create cmwk.yml
1 parent a9ccbbf commit e7061ff

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/cmwk.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)