Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Commit

Permalink
chore: do not ignore scripts in build job
Browse files Browse the repository at this point in the history
  • Loading branch information
samrith-s committed Jul 5, 2021
1 parent 23a09ec commit bdd7860
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: checks

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

env:
NODE_VERSION: '14'
Expand All @@ -34,7 +34,7 @@ jobs:
cache: 'yarn'
- run: yarn install --frozen-lockfile --ignore-scripts
- run: yarn test

build:
runs-on: ubuntu-latest
needs: [lint, test]
Expand All @@ -44,5 +44,5 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
- run: yarn install --frozen-lockfile --ignore-scripts
- run: yarn install --frozen-lockfile
- run: yarn build

0 comments on commit bdd7860

Please sign in to comment.