Bump Node, swap to npm, update CI pipeline #177
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: {} | |
concurrency: | |
group: ci-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: "Tests" | |
runs-on: ubuntu-latest | |
timeout-minutes: 8 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Volta | |
uses: volta-cli/action@v4 | |
- name: Node Modules Cache | |
id: cache-npm | |
uses: actions/cache@v3 | |
with: | |
path: '.npm' | |
key: ci-npm-${{ hashFiles('package-lock.json') }} | |
- name: Install Dependencies | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: npm ci --cache .npm | |
- name: Lint | |
run: npm lint | |
- name: Run Build | |
run: . bin/restore-env.sh && npm run ember build | |
- name: Run Tests | |
uses: nick-fields/retry@v2 | |
with: | |
timeout_minutes: 2 | |
max_attempts: 5 | |
command: . bin/restore-env.sh && CI=true npm run ember test --path=dist | |
floating: | |
name: "Floating Dependencies" | |
runs-on: ubuntu-latest | |
timeout-minutes: 12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Volta | |
uses: volta-cli/action@v4 | |
- name: Install Dependencies | |
run: npm i --cache .npm | |
- name: Run Build | |
run: npm run ember build | |
- name: Run Tests | |
uses: nick-fields/retry@v2 | |
with: | |
timeout_minutes: 2 | |
max_attempts: 5 | |
command: CI=true npm run ember test --path=dist | |
try-scenarios: | |
name: ${{ matrix.try-scenario }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 12 | |
strategy: | |
fail-fast: false | |
matrix: | |
try-scenario: | |
[ | |
ember-lts-2.12, | |
ember-lts-2.18, | |
ember-lts-3.16, | |
ember-lts-3.20, | |
ember-lts-3.24, | |
ember-lts-3.28, | |
ember-lts-4.4, | |
ember-lts-4.8, | |
ember-lts-4.12, | |
ember-3.28-with-jquery, | |
ember-3.28-classic, | |
] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Volta | |
uses: volta-cli/action@v4 | |
- name: Stash package-lock.json for cache key | |
run: cp package-lock.json __cache-key | |
- name: Node Modules Cache | |
id: cache-npm | |
uses: actions/cache@v3 | |
with: | |
path: | | |
.npm | |
package.json | |
package-lock.json | |
__env | |
key: ci-npm-v3-${{ matrix.try-scenario }}-${{ hashFiles('config/ember-try.js', '__cache-key') }} | |
restore-keys: | | |
ci-npm-${{ hashFiles('package-lock.json') }} | |
- name: Install Dependencies | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: npm ci --cache .npm | |
- name: Ember-Try Setup | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup --- bin/stash-env.sh | |
- name: Run Build | |
run: . bin/restore-env.sh && npm run ember build | |
- name: Run Tests | |
uses: nick-fields/retry@v2 | |
with: | |
timeout_minutes: 2 | |
max_attempts: 5 | |
command: . bin/restore-env.sh && CI=true npm run ember test --path=dist |