Skip to content

chore(deps-dev): bump prettier from 2.7.1 to 3.2.5 #148

chore(deps-dev): bump prettier from 2.7.1 to 3.2.5

chore(deps-dev): bump prettier from 2.7.1 to 3.2.5 #148

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{matrix.node-version}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
- run: npm ci
- run: npm run build
- run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
flags: unittests
directory: ./coverage
fail_ci_if_error: true
verbose: true