Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Add rate limiting

Add rate limiting #14

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'pnpm'
- run: pnpm install
- run: pnpm build
- run: pnpm format:check
- run: pnpm lint
- run: pnpm build
- run: pnpm test
- run: pnpm test:e2e
- uses: codecov/codecov-action@v3