Skip to content

Merge pull request #237 from wobsoriano/dependabot/npm_and_yarn/clerk… #826

Merge pull request #237 from wobsoriano/dependabot/npm_and_yarn/clerk…

Merge pull request #237 from wobsoriano/dependabot/npm_and_yarn/clerk… #826

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9.13.0
- name: Set up Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm --filter vue-clerk typecheck
- name: Build
run: pnpm build-packages
- name: Test
run: pnpm --filter vue-clerk test