chore(deps): update dependency rollup to v4.27.2 #2592
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
# This workflow is largely based on | |
# https://github.com/salsify/ember-css-modules/blob/master/.github/workflows/ci.yml | |
name: CI | |
# These trigger patterns courtesy of https://github.com/broccolijs/broccoli/pull/436 | |
on: | |
pull_request: | |
push: | |
# filtering branches here prevents duplicate builds from pull_request and push | |
branches: | |
- main | |
- "v*" | |
jobs: | |
lint-js: | |
name: lint:js | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- run: pnpm run -r --parallel --aggregate-output lint:js | |
lint-css: | |
name: lint:css | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- run: pnpm run -r --parallel --aggregate-output lint:css | |
lint-hbs: | |
name: lint:hbs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- run: pnpm run -r --parallel --aggregate-output lint:hbs | |
lint-types: | |
name: lint:types | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- run: pnpm run -r --parallel --aggregate-output lint:types | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Test | |
run: pnpm run -r --parallel --aggregate-output test | |
test-try: | |
name: Ember Try | |
runs-on: ubuntu-24.04 | |
needs: [test] | |
strategy: | |
fail-fast: false | |
matrix: | |
try-scenario: | |
- ember-3.28 | |
- ember-4.12 | |
- ember-5.4 | |
- ember-5.8 | |
- ember-5.12 | |
- ember-release | |
- ember-beta | |
- ember-canary | |
- embroider-safe | |
- embroider-optimized | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Try Scenario | |
run: pnpm exec ember try:one ${{ matrix.try-scenario }} --skip-cleanup | |
working-directory: test-app |