Skip to content
name: 'Tests: node.js: shimmed Promise'
on: [pull_request, push]
jobs:
majors:
name: 'majors, promise-shimmed tests'
continue-on-error: true
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- '0.12'
- '0.11'
- '0.10'
- '0.8'
steps:
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }} && npm install'
with:
node-version: ${{ matrix.node-version }}
- run: npm run test:promise-shimmed
node:
name: 'node, promise-shimmed tests'
needs: [majors]
runs-on: ubuntu-latest
steps:
- run: 'echo tests completed'