chore(deps-dev): bump stylelint from 16.0.2 to 16.1.0 #2031
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lib Tests Unit | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'packages/lib/**' | |
pull_request: | |
paths: | |
- 'packages/lib/**' | |
- 'pnpm-lock.yaml' | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: szenius/set-timezone@v1.1 | |
with: | |
timezoneLinux: 'Europe/Paris' | |
timezoneMacos: 'Europe/Paris' | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '21' | |
cache: 'pnpm' | |
- name: Install modules | |
run: pnpm install | |
- name: Test & Publish Code Coverage | |
uses: paambaati/codeclimate-action@v3.2.0 | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: pnpm --filter maz-ui test:unit:coverage --silent | |
coverageLocations: | | |
${{github.workspace}}/packages/lib/coverage/clover.xml:clover |