Skip to content

Commit

Permalink
Make sure we fail build when tests fail, but do not fail-fast and run…
Browse files Browse the repository at this point in the history
… all tests without cancelling them
  • Loading branch information
noisekit committed Aug 11, 2023
1 parent fa1857c commit b35c976
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/check-packages.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: "Validate yarn.lock and cache"

on: [pull_request]
on:
pull_request: {}
push:
branches:
- "main"

jobs:
check:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
name: Lint
on: [push]

on:
pull_request: {}
push:
branches:
- "main"

jobs:
lint:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/simulate-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
CANNON_IPFS_URL: "http://127.0.0.1:5001"
CANNON_PUBLISH_IPFS_URL: "http://127.0.0.1:5001"
strategy:
fail-fast: false
matrix:
network: [goerli, optimistic-goerli]
project: [protocol/oracle-manager, protocol/synthetix]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ on:
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: true
env:
CANNON_IPFS_URL: "http://127.0.0.1:5001"
CANNON_PUBLISH_IPFS_URL: "http://127.0.0.1:5001"
strategy:
fail-fast: false
matrix:
package:
[
Expand Down

0 comments on commit b35c976

Please sign in to comment.