Skip to content

Commit

Permalink
Update CI config - use updated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcardle committed Oct 28, 2023
1 parent a161ccc commit 3afff0f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
Expand All @@ -39,7 +39,7 @@ jobs:
path: ./packages/djangobuilder.io/dist

smoke_tests:
name: Smoke tests - djangobuilder-core
name: Core - Smoke tests
needs: [build]
runs-on: ubuntu-latest
steps:
Expand All @@ -48,7 +48,7 @@ jobs:
- run: yarn smoketest

core_tests:
name: Core tests - djangobuilder-core
name: Core - Unit tests
needs: [smoke_tests]
runs-on: ubuntu-latest
steps:
Expand All @@ -57,7 +57,7 @@ jobs:
- run: yarn coretest

test_v4:
name: Unit Tests - djangobuilder 4
name: DB4 - Unit Tests
needs: [build]
runs-on: ubuntu-latest
steps:
Expand All @@ -66,7 +66,7 @@ jobs:
- run: yarn test_v4

cli_tests:
name: CLI Tests - djangobuilder.io
name: DB.io - CLI Tests
needs: [build]
runs-on: ubuntu-latest
steps:
Expand All @@ -75,7 +75,7 @@ jobs:
- run: script/cli_test.sh

io_tests:
name: Unit Tests - djangobuilder.io
name: DB.io - Unit Tests
needs: [build]
runs-on: ubuntu-latest
steps:
Expand All @@ -84,7 +84,7 @@ jobs:
- run: yarn test_io

e2e_tests:
name: E2E Tests - djangobuilder.io
name: DB.io - E2E Tests
needs: [io_tests]
runs-on: ubuntu-latest
env:
Expand Down

0 comments on commit 3afff0f

Please sign in to comment.