Skip to content

Bump @tsconfig/esm from 1.0.2 to 1.0.4 #319

Bump @tsconfig/esm from 1.0.2 to 1.0.4

Bump @tsconfig/esm from 1.0.2 to 1.0.4 #319

Workflow file for this run

name: test
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Test Node.js 16.x
- uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm install --production=false
- run: npm test -- --coverage
- uses: codecov/codecov-action@v3
run_regression_tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
name: Test Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install --production=false
- run: npm test