We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab830a6 commit 342f815Copy full SHA for 342f815
1 file changed
.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