Skip to content

Bump braces from 3.0.2 to 3.0.3 (#37) #107

Bump braces from 3.0.2 to 3.0.3 (#37)

Bump braces from 3.0.2 to 3.0.3 (#37) #107

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Node CI - test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Repository checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: Install latest npm
run: npm install -g npm
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Run build
run: npm run build
- name: Run tests
run: npm run test:coverage
- name: Code coverage
uses: codecov/codecov-action@v1