Skip to content

fix(preset-esm): replace fixed source path in tsconfig.build.json #760

fix(preset-esm): replace fixed source path in tsconfig.build.json

fix(preset-esm): replace fixed source path in tsconfig.build.json #760

Workflow file for this run

name: code test
on:
push:
branches:
- '**'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [16, 17, 18, 19, 20]
steps:
- name: checkout
uses: actions/checkout@v3
- name: use node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: cache node_modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-dependencies-${{ hashFiles('pnpm-lock.yaml') }}
- name: enable corepack
run: corepack enable
- name: install dependencies
run: pnpm install
- name: run test
run: pnpm run test
env:
CI: true
- name: run build
run: pnpm run build