Skip to content

chore(deps-dev): Bump prettier from 3.2.5 to 3.3.2 #564

chore(deps-dev): Bump prettier from 3.2.5 to 3.3.2

chore(deps-dev): Bump prettier from 3.2.5 to 3.3.2 #564

Workflow file for this run

# This workflow will do a clean install of Node dependencies, build the source code and run tests across different versions of Node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [develop, main]
pull_request:
branches: [develop, main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*, current]
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 --if-present
- run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
directory: ./coverage/
fail_ci_if_error: true
verbose: true