Skip to content

chore(version): upgrade packages #164

chore(version): upgrade packages

chore(version): upgrade packages #164

Workflow file for this run

name: Lint
on:
push:
branches:
- "**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- name: "Install PNPM"
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Setup Node.js v${{ vars.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}
registry-url: https://registry.npmjs.org
cache: "pnpm"
- name: "Install Dependencies"
shell: bash
run: pnpm install --frozen-lockfile
- name: Lint project
run: pnpm run lint && pnpm run build