Skip to content

Update dev config run after test and build passed #1

Update dev config run after test and build passed

Update dev config run after test and build passed #1

Workflow file for this run

name: Test
on:
push:
branches: [ "*" ]
pull_request:
branches: [ main ]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: latest
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}