Skip to content

chore: update readme and package.json #7

chore: update readme and package.json

chore: update readme and package.json #7

Workflow file for this run

name: Main
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node and pnpm
uses: silverhand-io/actions-node-pnpm-run-steps@v5
- name: Lint
run: pnpm lint
- name: Test
run: pnpm run test --coverage
- name: Build
run: pnpm build
- name: Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true