Swap to pnpm #1172
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 | |
- 'v*' | |
pull_request: {} | |
concurrency: | |
group: ci-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm lint | |
test: | |
name: 'Tests' | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run Tests | |
run: pnpm node-test-with-coverage | |
- uses: codecov/codecov-action@v5 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
floating: | |
name: 'Floating Dependencies' | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install --no-lockfile | |
- name: Run Tests | |
run: pnpm node-test | |
all-commands-smoke-tests: | |
name: Tests (commands smoke test) | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
needs: | |
- lint | |
- test | |
- floating | |
strategy: | |
fail-fast: false | |
matrix: | |
command: | |
# try:each | |
- ./node_modules/.bin/ember try:each | |
# skip-cleanup option | |
- ./node_modules/.bin/ember try:each --skip-cleanup | |
# config-path option | |
- ./node_modules/.bin/ember try:each --config-path='../test/fixtures/dummy-ember-try-config.js' | |
# both ember-try options | |
- ./node_modules/.bin/ember try:each --config-path='../test/fixtures/dummy-ember-try-config.js' --skip-cleanup true | |
# try:ember | |
- ./node_modules/.bin/ember try:ember '> 4.10.0 < 5.2.0' | |
- ./node_modules/.bin/ember try:ember '4.9.0' --config-path='../test/fixtures/dummy-ember-try-config.js' | |
- ./node_modules/.bin/ember try:ember '4.8.3' --skip-cleanup=true | |
# try:config | |
- ./node_modules/.bin/ember try:config | |
- ./node_modules/.bin/ember try:config --config-path='../test/fixtures/dummy-ember-try-config.js' | |
# try:one <scenario> | |
- ./node_modules/.bin/ember try:one default | |
# custom command | |
- ./node_modules/.bin/ember try:one default --- ember help | |
# skip-cleanup option | |
- ./node_modules/.bin/ember try:one default --skip-cleanup | |
# config-path option | |
- ./node_modules/.bin/ember try:one test1 --config-path='../test/fixtures/dummy-ember-try-config.js' | |
# both ember-try options | |
- ./node_modules/.bin/ember try:one test1 --config-path='../test/fixtures/dummy-ember-try-config.js' --skip-cleanup true | |
# custom command with options to command | |
- ./node_modules/.bin/ember try:one default --- ember help --silent | |
# custom command mixed with ember try's own option | |
- ./node_modules/.bin/ember try:one default --skip-cleanup --- ember help --silent | |
# try:reset | |
- ./node_modules/.bin/ember try:reset | |
# Environment variables availability | |
- FOO="5" ./node_modules/.bin/ember try:one default --- ./fail-if-no-foo.sh | |
- ./node_modules/.bin/ember try:one default --- FOO=5 ./fail-if-no-foo.sh | |
# Custom, compound commands | |
- ./node_modules/.bin/ember try:one default --- 'echo 1 && echo 2' | |
# Environment variables from config | |
- ./node_modules/.bin/ember try:each --config-path='../test/fixtures/dummy-ember-try-config-different-env-vars.js' | |
# fs-extra versions 7.x and above caused a regresion | |
- ./node_modules/.bin/ember try:each --config-path='../test/fixtures/dummy-ember-try-config-fs-extra-scenarios.js' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: install deps | |
run: pnpm install --frozen-lockfile | |
- run: ${{ matrix.command }} | |
working-directory: smoke-test-app | |
npm-smoke-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [18, 20, 22] | |
name: Smoke Tests (Node v${{ matrix.node }} with npm) | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
needs: | |
- lint | |
- test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- name: install deps | |
run: pnpm install --frozen-lockfile | |
- name: install smoke-test-app deps | |
run: npm install | |
working-directory: smoke-test-app | |
- run: ./node_modules/.bin/ember try:one test2 --config-path='../test/fixtures/dummy-ember-try-config-with-npm-scenarios.js' | |
working-directory: smoke-test-app | |
yarn-smoke-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [18, 20, 22] | |
name: Smoke Tests (Node v${{ matrix.node }} with yarn) | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
needs: | |
- lint | |
- test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- name: install deps | |
run: pnpm install --frozen-lockfile | |
- name: install smoke-test-app deps | |
run: yarn install | |
working-directory: smoke-test-app | |
- run: ./node_modules/.bin/ember try:one test2 --config-path='../test/fixtures/dummy-ember-try-config-with-yarn-scenarios.js' | |
working-directory: smoke-test-app | |
windows-smoke-tests: | |
name: Smoke Tests (Windows) | |
runs-on: windows-latest | |
timeout-minutes: 20 | |
needs: | |
- lint | |
- test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: install deps | |
run: pnpm install --frozen-lockfile | |
- name: install smoke-test-app deps | |
run: npm install | |
working-directory: smoke-test-app | |
- run: ./node_modules/.bin/ember try:one test2 --config-path='../test/fixtures/dummy-ember-try-config-with-npm-scenarios.js' | |
working-directory: smoke-test-app |