Skip to content

Fix React Server Components CVE vulnerabilities #3

Fix React Server Components CVE vulnerabilities

Fix React Server Components CVE vulnerabilities #3

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Copy .env.example files
shell: bash
run: find . -type f -name ".env.example" -exec sh -c 'cp "$1" "${1%.*}"' _ {} \;
- name: TypeCheck
run: pnpm typecheck
# - name: Lint
# run: pnpm lint