Skip to content

Commit

Permalink
[actions] reuse common workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Dec 4, 2021
1 parent 5d708fd commit 3671010
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 74 deletions.
25 changes: 3 additions & 22 deletions .github/workflows/node-pretest.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,7 @@
name: "Tests: pretest/posttest"
name: 'Tests: pretest/posttest'

on: [pull_request, push]

jobs:
pretest:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/install@main
name: "nvm install ${{ matrix.node-version }} && npm install"
with:
node-version: "lts/*"
- run: npm run pretest

posttest:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/install@main
name: "nvm install ${{ matrix.node-version }} && npm install"
with:
node-version: "lts/*"
- run: npm run posttest
tests:
uses: ljharb/actions/.github/workflows/pretest.yml@main
62 changes: 10 additions & 52 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
@@ -1,60 +1,18 @@
name: "Tests: node.js"
name: 'Tests: node.js >= 14'

on: [pull_request, push]

jobs:
matrix:
runs-on: ubuntu-latest
outputs:
latest: ${{ steps.set-matrix.outputs.requireds }}
minors: ${{ steps.set-matrix.outputs.optionals }}
steps:
- uses: ljharb/actions/node/matrix@main
id: set-matrix
with:
preset: ">=14"

latest:
needs: [matrix]
name: "latest minors"
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix: ${{ fromJson(needs.matrix.outputs.latest) }}

steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/install@main
name: "nvm install ${{ matrix.node-version }} && npm install"
with:
node-version: ${{ matrix.node-version }}
- run: npm run tests-only
- uses: codecov/codecov-action@v2

minors:
needs: [matrix, latest]
name: "non-latest minors"
continue-on-error: true
if: ${{ !github.head_ref || !startsWith(github.head_ref, 'renovate') }}
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix: ${{ fromJson(needs.matrix.outputs.minors) }}

steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/install@main
name: "nvm install ${{ matrix.node-version }} && npm install"
with:
node-version: ${{ matrix.node-version }}
- run: npm run tests-only
- uses: codecov/codecov-action@v2
tests:
uses: ljharb/actions/.github/workflows/node.yml@main
with:
range: '>= 14'
type: minors
command: npm run tests-only

node:
name: "node 14+"
needs: [latest, minors]
name: 'node >= 14'
needs: [tests]
runs-on: ubuntu-latest
steps:
- run: "echo tests completed"
- run: 'echo tests completed'

0 comments on commit 3671010

Please sign in to comment.