Update privacy policy and whitepaper #2484
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint - Typescript and ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
- run: corepack enable pnpm | |
- run: corepack prepare [email protected] --activate | |
- run: corepack exec pnpm install --frozen-lockfile | |
- run: tsc | |
- run: corepack exec pnpm run lint | |
lint_prettier: | |
name: Lint - Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
- run: corepack enable pnpm | |
- run: corepack prepare [email protected] --activate | |
- run: corepack exec pnpm install --frozen-lockfile | |
- run: npx --no-install prettier --check "src/**/*.{js,jsx,ts,tsx}" |