Skip to content

Merge pull request #329 from recurly/v3-v2021-02-25-8993209395 #319

Merge pull request #329 from recurly/v3-v2021-02-25-8993209395

Merge pull request #329 from recurly/v3-v2021-02-25-8993209395 #319

Workflow file for this run

name: CI
on: [push]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
name: Node ${{ matrix.node }} tests
strategy:
matrix:
node: [8, 10, 12, 14]
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: ./scripts/build
- run: ./scripts/test
buildall:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Build (matrix)
needs: build
steps:
- name: Check build matrix status
if: ${{ needs.build.result != 'success' }}
run: exit 1