Skip to content

Commit

Permalink
Merge pull request #172 from bertdeblock/always-specify-node-version-…
Browse files Browse the repository at this point in the history
…in-ci

Make sure `node-version` is always specified in the GitHub CI file
  • Loading branch information
NullVoxPopuli authored Aug 11, 2023
2 parents 57b31e0 + 3262b82 commit a9b5238
Show file tree
Hide file tree
Showing 5 changed files with 228 additions and 12 deletions.
18 changes: 6 additions & 12 deletions files/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@ jobs:

steps:
- uses: actions/checkout@v3
<% if (pnpm) {%>- uses: wyvox/action-setup-pnpm@v2
<% } else { %>- name: Install Node
uses: actions/setup-node@v3
- uses: <%= pnpm ? 'wyvox/action-setup-pnpm@v2' : 'actions/setup-node@v3' %>
with:
node-version: 16.x
node-version: 16<% if (!pnpm) { %>
cache: <%= yarn ? 'yarn' : 'npm' %>
- name: Install Dependencies
run: <%= yarn ? 'yarn install --frozen-lockfile' : 'npm ci' %><%}%>
Expand All @@ -37,11 +35,9 @@ jobs:

steps:
- uses: actions/checkout@v3
<% if (pnpm) {%>- uses: wyvox/action-setup-pnpm@v2
<% } else { %>- name: Install Node
uses: actions/setup-node@v3
- uses: <%= pnpm ? 'wyvox/action-setup-pnpm@v2' : 'actions/setup-node@v3' %>
with:
node-version: 16.x
node-version: 16<% if (!pnpm) { %>
cache: <%= yarn ? 'yarn' : 'npm' %>
- name: Install Dependencies
run: <%= yarn ? 'yarn install --frozen-lockfile' : 'npm ci' %><%}%>
Expand All @@ -67,11 +63,9 @@ jobs:

steps:
- uses: actions/checkout@v3
<% if (pnpm) {%>- uses: wyvox/action-setup-pnpm@v2
<% } else { %>- name: Install Node
uses: actions/setup-node@v3
- uses: <%= pnpm ? 'wyvox/action-setup-pnpm@v2' : 'actions/setup-node@v3' %>
with:
node-version: 16.x
node-version: 16<% if (!pnpm) { %>
cache: <%= yarn ? 'yarn' : 'npm' %>
- name: Install Dependencies
run: <%= yarn ? 'yarn install --frozen-lockfile' : 'npm ci' %><%}%>
Expand Down
74 changes: 74 additions & 0 deletions tests/fixtures/default/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
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

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Run Tests
run: npm run test

floating:
name: "Floating Dependencies"
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- name: Install Dependencies
run: npm ci
- name: Run Tests
run: npm run test

try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: 'test'

strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.8
- ember-lts-4.12
- ember-release
- ember-beta
- ember-canary
- embroider-safe
- embroider-optimized

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- name: Install Dependencies
run: npm ci
- name: Run Tests
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
working-directory: test-app
65 changes: 65 additions & 0 deletions tests/fixtures/pnpm/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
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

steps:
- uses: actions/checkout@v3
- uses: wyvox/action-setup-pnpm@v2
with:
node-version: 16
- name: Lint
run: pnpm lint
- name: Run Tests
run: pnpm test

floating:
name: "Floating Dependencies"
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: wyvox/action-setup-pnpm@v2
with:
node-version: 16
- name: Run Tests
run: pnpm test

try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: 'test'

strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.8
- ember-lts-4.12
- ember-release
- ember-beta
- ember-canary
- embroider-safe
- embroider-optimized

steps:
- uses: actions/checkout@v3
- uses: wyvox/action-setup-pnpm@v2
with:
node-version: 16
- name: Run Tests
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
working-directory: test-app
74 changes: 74 additions & 0 deletions tests/fixtures/yarn/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
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

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Run Tests
run: yarn test

floating:
name: "Floating Dependencies"
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Tests
run: yarn test

try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: 'test'

strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.8
- ember-lts-4.12
- ember-release
- ember-beta
- ember-canary
- embroider-safe
- embroider-optimized

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Tests
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
working-directory: test-app
9 changes: 9 additions & 0 deletions tests/smoke-tests/defaults.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ for (let packageManager of SUPPORTED_PACKAGE_MANAGERS) {
expect(await fse.pathExists(yarn), 'yarn.lock does not exist').toBe(false);
expect(await fse.pathExists(pnpm), 'pnpm-lock.yaml does not exist').toBe(false);

await matchesFixture('.github/workflows/ci.yml', { cwd: helper.projectRoot });
await matchesFixture('.github/workflows/push-dist.yml', { cwd: helper.projectRoot });

break;
Expand All @@ -46,6 +47,10 @@ for (let packageManager of SUPPORTED_PACKAGE_MANAGERS) {
expect(await fse.pathExists(npm), 'package-lock.json does not exist').toBe(false);
expect(await fse.pathExists(pnpm), 'pnpm-lock.yaml does not exist').toBe(false);

await matchesFixture('.github/workflows/ci.yml', {
cwd: helper.projectRoot,
scenario: 'yarn',
});
await matchesFixture('.github/workflows/push-dist.yml', {
cwd: helper.projectRoot,
scenario: 'yarn',
Expand All @@ -58,6 +63,10 @@ for (let packageManager of SUPPORTED_PACKAGE_MANAGERS) {
expect(await fse.pathExists(npm), 'package-lock.json does not exist').toBe(false);
expect(await fse.pathExists(yarn), 'yarn.lock does not exist').toBe(false);

await matchesFixture('.github/workflows/ci.yml', {
cwd: helper.projectRoot,
scenario: 'pnpm',
});
await matchesFixture('.github/workflows/push-dist.yml', {
cwd: helper.projectRoot,
scenario: 'pnpm',
Expand Down

0 comments on commit a9b5238

Please sign in to comment.