Skip to content

refactor: sw-2479 promiseMiddleware, catch rejections #749

refactor: sw-2479 promiseMiddleware, catch rejections

refactor: sw-2479 promiseMiddleware, catch rejections #749

Workflow file for this run

name: Build
on:
push:
branches: [ main, stable, stage, dev** ]
tags:
- "*"
pull_request:
env:
COV_NODE_VERSION: 20
BRANCH: ${{ github.base_ref }}
jobs:
Integration-checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Node.js modules cache
uses: actions/cache@v4
id: modules-cache
with:
path: ${{ github.workspace }}/node_modules
key: ${{ runner.os }}-${{ matrix.node-version }}-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-${{ matrix.node-version }}-modules
- name: Install Node.js packages
if: ${{ steps.modules-cache.outputs.cache-hit != 'true' }}
run: npm install
- name: Lint and test
run: npm test
- name: Code coverage
if: ${{ success() && contains(matrix.node-version, env.COV_NODE_VERSION) }}
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.COV_TOKEN }}
- name: Confirm integration
if: ${{ success() }}
run: npm run build