Skip to content

Commit

Permalink
maybe this
Browse files Browse the repository at this point in the history
  • Loading branch information
Janpot committed Jul 22, 2020
1 parent e18b88f commit f251950
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build_test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
env:
NEXT_TELEMETRY_DISABLED: 1
steps:
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- run: yarn install --frozen-lockfile --check-files
- uses: actions/checkout@v2
- uses: actions/cache@v2
id: cache-build
with:
path: '.'
path: './*'
key: ${{ github.sha }}
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- run: yarn install --frozen-lockfile --check-files

lint:
runs-on: ubuntu-latest
Expand All @@ -28,7 +28,7 @@ jobs:
- uses: actions/cache@v2
id: restore-build
with:
path: '.'
path: './*'
key: ${{ github.sha }}
- run: yarn lint

Expand All @@ -42,7 +42,7 @@ jobs:
- uses: actions/cache@v2
id: restore-build
with:
path: '.'
path: './*'
key: ${{ github.sha }}
- run: ./check-pre-compiled.sh

Expand All @@ -62,7 +62,7 @@ jobs:
- uses: actions/cache@v2
id: restore-build
with:
path: '.'
path: './*'
key: ${{ github.sha }}

# TODO: remove after we fix watchpack watching too much
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- uses: actions/cache@v2
id: restore-build
with:
path: '.'
path: './*'
key: ${{ github.sha }}
- run: node run-tests.js test/integration/production/test/index.test.js

Expand All @@ -126,7 +126,7 @@ jobs:
- uses: actions/cache@v2
id: restore-build
with:
path: '.'
path: './*'
key: ${{ github.sha }}
- run: '[[ -z "$BROWSERSTACK_ACCESS_KEY" ]] && echo "Skipping for PR" || node run-tests.js test/integration/production/test/index.test.js'

Expand All @@ -146,7 +146,7 @@ jobs:
- uses: actions/cache@v2
id: restore-build
with:
path: '.'
path: './*'
key: ${{ github.sha }}
- run: '[[ -z "$BROWSERSTACK_ACCESS_KEY" ]] && echo "Skipping for PR" || node run-tests.js test/integration/production-nav/test/index.test.js'

Expand All @@ -160,7 +160,7 @@ jobs:
- uses: actions/cache@v2
id: restore-build
with:
path: '.'
path: './*'
key: ${{ github.sha }}

- run: ./publish-release.sh

0 comments on commit f251950

Please sign in to comment.