feat: add overwrite and isView options #449
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Tests | |
# Only run on non-draft PRs, and when PRs are synched | |
on: | |
pull_request: | |
types: [opened, reopened, ready_for_review, synchronize] | |
# If the PR has other files, a push w/ just .md or /docs | |
# files will still cause tests to run | |
paths-ignore: | |
- "**.md" | |
- "docs/**" | |
jobs: | |
build: | |
if: github.event.pull_request.draft == false | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
node: [18, 20] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install Dependencies | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Lint | |
run: npm run lint | |
- name: Test in Node | |
run: npm run test:node | |
- name: Test in Chrome | |
run: npm run test:chrome:ci | |
- uses: codecov/codecov-action@v1 | |
with: | |
directory: ./coverage |