swap to pnpm #125
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: | |
- master | |
- main | |
- "v*" | |
pull_request: | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
test: | |
name: Tests and Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
cache: pnpm | |
- run: pnpm i --frozen-lockfile | |
- run: pnpm run lint | |
- run: pnpm run test:node | |
- run: pnpm run test:ember | |
- run: pnpm run build | |
floating-dependencies: | |
name: Floating Dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
cache: pnpm | |
- run: pnpm install --no-lockfile | |
- run: pnpm run test:ember | |
- run: pnpm run build | |
try-scenarios: | |
name: "ember-try: ${{ matrix.ember-try-scenario }}" | |
runs-on: ubuntu-latest | |
needs: test | |
strategy: | |
fail-fast: false | |
matrix: | |
ember-try-scenario: | |
- ember-lts-3.16 | |
- ember-lts-3.20 | |
- ember-lts-3.24 | |
- ember-lts-3.28 | |
- ember-release | |
- ember-default-with-jquery | |
- ember-classic | |
- embroider-safe | |
- embroider-optimized | |
- no-deprecations | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- run: pnpm i --frozen-lockfile | |
- name: test | |
run: pnpm ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup | |
- run: pnpm run build | |
allow-fail-try-scenarios: | |
name: ${{ matrix.try-scenario }} - Allowed to fail | |
runs-on: ubuntu-latest | |
needs: 'test' | |
permissions: | |
pull-requests: write | |
strategy: | |
fail-fast: false | |
matrix: | |
try-scenario: | |
- ember-canary | |
- ember-beta | |
- ember-release-no-deprecations | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- run: pnpm i --frozen-lockfile | |
- run: pnpm run build | |
- name: test | |
id: tests | |
run: pnpm ember try:one ${{ matrix.try-scenario }} --skip-cleanup | |
continue-on-error: true | |
- uses: mainmatter/continue-on-error-comment@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
outcome: ${{ steps.tests.outcome }} | |
test-id: ${{ matrix.try-scenario }} |