Skip to content

fix(runtime-handler): fixes async handler functions throwing errors #697

fix(runtime-handler): fixes async handler functions throwing errors

fix(runtime-handler): fixes async handler functions throwing errors #697

Workflow file for this run

name: Node CI
on:
workflow_call:
# This gets run by on-merge-main.yml automatically
pull_request:
branches:
- main
- master
- 'features/*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node-version: [ lts/-1, lts/*]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Update npm to 8.x
run: |
npm i -g npm@8
- name: npm install, build, and test
run: |
npm install
npm run build
npm run test
env:
CI: true
NODE_ENV: test