Skip to content

chore(deps-dev): bump prettier from 3.7.2 to 3.7.4 #765

chore(deps-dev): bump prettier from 3.7.2 to 3.7.4

chore(deps-dev): bump prettier from 3.7.2 to 3.7.4 #765

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CI: true
jobs:
test-and-build:
name: Test and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- run: npm ci --ignore-scripts
- run: npm run prepare
- uses: actions/upload-artifact@v5
with:
name: code-coverage
path: coverage
upload-code-coverage:
name: Upload code coverage
needs: ['test-and-build']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
with:
name: code-coverage
path: coverage
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}