Skip to content

update CI workflows and README badges for improved clarity #3

update CI workflows and README badges for improved clarity

update CI workflows and README badges for improved clarity #3

Workflow file for this run

name: Build main
on:
push:
branches: [ main ]
pull_request:
branches: [ main ] # PRs cujo destino é main
workflow_dispatch: {} # opcional: permite rodar manualmente
concurrency:
group: ci-main-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
name: build-and-test (main)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: pnpm/action-setup@v4
with:
run_install: false
- run: pnpm i
- run: pnpm build
- run: pnpm test