Skip to content

feat: migrate to pnpm #3

feat: migrate to pnpm

feat: migrate to pnpm #3

Workflow file for this run

name: autofix.ci
on:
pull_request:
branches: ["main" ]
paths:
- '.github/workflows/autofix-pnpm.yml'
- 'clients/**'
- 'ee/tabby-ui/**'
permissions:
contents: read
concurrency:
group: ${{ github.workflow_ref }}-${{ github.head_ref || github.ref_name }}
# If this is enabled it will cancel current running and start latest
cancel-in-progress: true
jobs:
autofix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: pnpm
cache-dependency-path: 'pnpm-lock.yaml'
- name: Install dependencies
working-directory: ./ee/tabby-ui
run: pnpm install
- name: Lint
working-directory: ./ee/tabby-ui
run: pnpm lint
- name: Test
working-directory: ./ee/tabby-ui
run: pnpm test
- name: Build
working-directory: ./ee/tabby-ui
run: pnpm build