Skip to content

Bump braces from 3.0.2 to 3.0.3 #21

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #21

Workflow file for this run

name: ci pipeline
on:
- push
- pull_request
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Dependency installation
run: |
npm ci
npm run build --if-present
- name: Linting
run: npm run lint
- name: Unit tests
run: npm run test
- name: Coverage
run: npm run coverage
- name: Codecov upload
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}