Skip to content

πŸ†™ πŸ“¦ Bump prettier from 3.2.5 to 3.3.3 #2656

πŸ†™ πŸ“¦ Bump prettier from 3.2.5 to 3.3.3

πŸ†™ πŸ“¦ Bump prettier from 3.2.5 to 3.3.3 #2656

Workflow file for this run

name: Tests
on:
pull_request:
types: [opened, edited, synchronize]
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["16", "18", "20"]
name: Test with node v${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run build
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: node v${{ matrix.node }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
name: Publishing coverage report
steps:
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true