Skip to content

support wildcards pattern with common suffix in imports/exports field #199

support wildcards pattern with common suffix in imports/exports field

support wildcards pattern with common suffix in imports/exports field #199

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 14.x
cache: yarn
- run: yarn --frozen-lockfile
- run: yarn lint
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [10.x, 12.x, 14.x, 16.x, 17.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn --frozen-lockfile
- run: yarn cover:ci
- if: ${{ matrix.os != 'windows-latest' }}
uses: codecov/codecov-action@v1