Skip to content

Only detect version for expected package manager #142

Only detect version for expected package manager

Only detect version for expected package manager #142

Workflow file for this run

name: Main
on:
pull_request:
push:
branches:
- main
jobs:
everything:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint Format
run: pnpm lint:format
- name: Type Check
run: pnpm type-check
- name: Test
run: pnpm test
- name: Build
run: pnpm build