Thanks to visit codestin.com Credit goes to github.com
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.
1 parent ab830a6 commit 342f815Copy full SHA for 342f815
.github/workflows/main.yml
@@ -15,6 +15,6 @@ jobs:
15
- run: npm install
16
- name: Echo week folder and run tests
17
run: |
18
- export WEEK_FOLDER=$(echo ${BRANCH_NAME} | sed -E 's/.*w(eek)?[-_]?([0-9]).*/week\2/gi')
19
- echo ${WEEK_FOLDER}
20
- npm run test-${WEEK_FOLDER}
+ export WEEK=$(echo ${BRANCH_NAME} | sed -E 's/.*w(eek)?[-_]?([0-9]).*/week\2/gi')
+ echo Week: ${WEEK}
+ npm run test-${WEEK}
0 commit comments