Skip to content

Commit

Permalink
simplify CI process by removing some variables
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelchadwick committed Jul 26, 2024
1 parent fc24ce9 commit a0cc257
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ on:
- main
- master
pull_request:
schedule:
- cron: '30 7 * * *' # weekly, at 7:30am

concurrency:
group: ci-${{ github.head_ref || github.ref }}
Expand All @@ -34,7 +32,7 @@ jobs:
run: pnpm run lint

test:
name: ${{matrix.workspace}} Test (${{ matrix.node-version }})
name: Test
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [lint]
Expand All @@ -60,7 +58,7 @@ jobs:
run: pnpm --filter ${{ matrix.workspace }} exec ember test

test-with-embroider:
name: ${{matrix.workspace}} Test With Embroider
name: Test With Embroider
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
Expand All @@ -85,7 +83,7 @@ jobs:
run: pnpm --filter ${{matrix.workspace}} exec ember test

build:
name: ${{matrix.workspace}} Build (${{ matrix.node-version }})
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
Expand All @@ -110,7 +108,7 @@ jobs:
run: pnpm --filter ${{matrix.workspace}} run build

build-with-embroider:
name: ${{matrix.workspace}} Build With Embroider
name: Build With Embroider
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
Expand Down

0 comments on commit a0cc257

Please sign in to comment.