From be2ee0fbe194273988cc9ee143490273945d264b Mon Sep 17 00:00:00 2001 From: Daniel Cousens <413395+dcousens@users.noreply.github.com> Date: Sun, 8 Oct 2023 13:27:44 +1100 Subject: [PATCH] Add node verisons 16, 18 and 20 (#331) --- .github/workflows/ci.yml | 49 +++++++++++++++++++++++++--------------- 1 file changed, 31 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 910c8cf..817f3a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,23 +1,36 @@ -name: ci -'on': - - push - - pull_request +name: Tests + +on: + push: + branches: + - main + pull_request: + jobs: - test: - name: Node ${{ matrix.node }} / ${{ matrix.os }} - runs-on: ${{ matrix.os }} + unit: + runs-on: ubuntu-latest strategy: fail-fast: false matrix: - os: - - ubuntu-latest - node: - - '14' + # see https://nodejs.org/en/about/releases/ + node-version: [16.x, 18.x, 20.x] + steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: ${{ runner.node }} - - run: npm install - - run: npm run build --if-present - - run: npm test + - uses: actions/checkout@main + - uses: actions/setup-node@main + with: + node-version: ${{ matrix.node-version }} + - run: npm install + - run: npm test + + standard: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@main + - uses: actions/setup-node@main + with: + # don't use lts/* to prevent hitting rate-limit + node-version: 20.x + - run: npm install + - run: npm run standard -- 2.34.1