Skip to content

Commit b49f04e

Browse files
committed
fix github actions tests
1 parent 15cfb42 commit b49f04e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/actions/setup/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ runs:
2323
- if: steps.cache-node-modules.outputs.cache-hit != 'true'
2424
name: Install dependencies
2525
shell: bash
26-
run: npm ci
26+
run: |
27+
npm ci || (rm -rf node_modules && npm install)

.github/workflows/bdd-full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: BDD Full Tests
22

33
on:
44
pull_request:
5-
branches: [main]
5+
branches: ['**']
66

77
jobs:
88
full-tests:

0 commit comments

Comments
 (0)