Skip to content

feat(#58): Add exclude pattern support #152

feat(#58): Add exclude pattern support

feat(#58): Add exclude pattern support #152

Workflow file for this run

name: CI
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 15.x
uses: actions/setup-node@v2
with:
node-version: '15.x'
- run: npm i
- run: npm run lint
- run: npm run prettier:ci
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js 15.x
uses: actions/setup-node@v2
with:
node-version: '15.x'
- run: npm i
- run: npm run build
- run: npm run test