Skip to content

Bump typescript from 5.1.6 to 5.2.2 (#2) #8

Bump typescript from 5.1.6 to 5.2.2 (#2)

Bump typescript from 5.1.6 to 5.2.2 (#2) #8

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Rebuild the dist/ directory
run: pnpm build
- name: Lint
run: pnpm lint