chore(deps-dev): bump braces from 3.0.2 to 3.0.3 (#194) #434
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
test: | |
name: node@${{ matrix.node_version }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node_version: [ 16, 18, 20 ] | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node@${{ matrix.node_version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node_version }} | |
cache: npm | |
- name: npm install | |
run: npm ci | |
- name: Test | |
run: npm test -- --ci --verbose | |
# Run codecov after all builds, and only on a single environment | |
- name: Gather Coverage | |
if: matrix.os == 'ubuntu-latest' && matrix.node_version == '18' | |
run: npm test -- --ci --coverage | |
- name: Upload Coverage | |
uses: codecov/codecov-action@v1 | |
if: matrix.os == 'ubuntu-latest' && matrix.node_version == '18' | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} | |
file: ./coverage/coverage-final.json | |