Remove refs to old plans #1673
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: π¬ Validate | |
on: | |
workflow_call: | |
pull_request: {} | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
validate: | |
name: ⬣ Validate | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v3 | |
- name: β Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.2 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.9.2 | |
- name: π Env | |
run: | | |
echo "Event name: ${{ github.event_name }}" | |
echo "Git ref: ${{ github.ref }}" | |
echo "GH actor: ${{ github.actor }}" | |
echo "SHA: ${{ github.sha }}" | |
VER=`node --version`; echo "Node ver: $VER" | |
VER=`pnpm --version`; echo "pnpm ver: $VER" | |
- name: Install Vercel CLI | |
run: npm install --global vercel@latest | |
- name: Pull Vercel Environment Information | |
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Move .env file | |
run: | | |
cp .vercel/.env.preview.local .env | |
- name: π₯ Download deps | |
run: pnpm install | |
- name: π¬ Generate Types | |
run: pnpm run generate:types | |
- name: π¬ Lint | |
run: pnpm run lint:fix | |
- name: π Type check | |
run: pnpm run typecheck | |
- name: β‘ Run vitest | |
run: pnpm run test:unit:run |