Skip to content

chore(ci): add automation workflows #1

chore(ci): add automation workflows

chore(ci): add automation workflows #1

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run typecheck
- run: npm run coverage
- run: npm run build
- uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-report
path: coverage