We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15cfb42 commit b49f04eCopy full SHA for b49f04e
.github/actions/setup/action.yml
@@ -23,4 +23,5 @@ runs:
23
- if: steps.cache-node-modules.outputs.cache-hit != 'true'
24
name: Install dependencies
25
shell: bash
26
- run: npm ci
+ run: |
27
+ npm ci || (rm -rf node_modules && npm install)
.github/workflows/bdd-full.yml
@@ -2,7 +2,7 @@ name: BDD Full Tests
2
3
on:
4
pull_request:
5
- branches: [main]
+ branches: ['**']
6
7
jobs:
8
full-tests:
0 commit comments