Skip to content

Commit d3bd6e8

Browse files
committed
test: ajuste erro no setup da pipe
1 parent 46ed0fd commit d3bd6e8

3 files changed

Lines changed: 3304 additions & 3 deletions

File tree

.github/workflows/github-actions.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ jobs:
1717
node-version: "20"
1818

1919
- name: Install Dependencies
20-
run: npm ci
20+
run: |
21+
if [ -f package-lock.json ]; then
22+
npm ci
23+
else
24+
npm install
25+
fi
2126
2227
- name: Cypress run
2328
continue-on-error: true

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77

88
# production
99
/build
10-
package-lock.json
1110

12-
#env
11+
#env

0 commit comments

Comments
 (0)