chore(deps): update pnpm to v9.10.0 #705
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: Unit tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ✅ | |
uses: actions/checkout@v4 | |
- name: Setup Node.js 🔧 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- name: Setup pnpm 🛠️ | |
uses: pnpm/action-setup@v4 | |
- name: Install dependencies 🛠️ | |
run: pnpm i | |
- name: Run Jest with scss-true 🧪 | |
run: pnpm run test | |
- name: create coverage report 📊 | |
run: npx jest --coverage | |
- name: codecoverage | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |