Skip to content

Handle mapped exports #74

Handle mapped exports

Handle mapped exports #74

Workflow file for this run

name: Test
# https://git.luolix.topmunity/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662/2
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-vers:
strategy:
matrix:
node: ['8.6', '8', '10.0', '10', '12.0', '12', '14.0', '14', '16.0', '16', '18.0', '18', '19', '20']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test
test-expose-http2:
strategy:
matrix:
node: ['8.6']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: NODE_OPTIONS='--expose-http2' npm test