Skip to content

Commit

Permalink
Prevent duplicate builds
Browse files Browse the repository at this point in the history
  • Loading branch information
rmeissner committed Feb 22, 2021
1 parent 259f042 commit f55b8d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: safe-contracts
on: [push, pull_request]
on: [push]

jobs:
tests:
Expand All @@ -11,7 +11,7 @@ jobs:
node-version: 15
- uses: actions/cache@v2
with:
path: '**/node_modules'
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn
- run: yarn build
Expand All @@ -29,7 +29,7 @@ jobs:
node-version: 15
- uses: actions/cache@v2
with:
path: '**/node_modules'
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn
- run: yarn build
Expand Down

0 comments on commit f55b8d3

Please sign in to comment.