Skip to content

Commit

Permalink
Seperate integrity check and integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Feb 27, 2023
1 parent 8e6696a commit ac0a6c4
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,6 @@ jobs:
backup_file: '/tmp/backup.sql'
- name: Build
run: yarn build
- name: Node.js integrity check
run: yarn bob check
- name: Build Test Artifacts
run: yarn build-test-artifacts
- name: Test
Expand Down Expand Up @@ -194,3 +192,25 @@ jobs:
timeout_minutes: 10
max_attempts: 3
command: yarn test:integration:leak

integrity-check:
name: integration / ${{matrix.os}} / node ${{matrix.node-version}}
timeout-minutes: 60
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-version: [14, 18]
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: the-guild-org/shared-config/setup@main
name: setup env
with:
nodeVersion: ${{matrix.node-version}}
- name: Build
run: yarn build
- name: Node.js integrity check
run: yarn bob check

0 comments on commit ac0a6c4

Please sign in to comment.