Skip to content

Add docker build deploy #1

Add docker build deploy

Add docker build deploy #1

Workflow file for this run

name: Lint and Build on PR
on:
pull_request:
branches:
- '**'
jobs:
Validate:
name: Lint and Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Run lint
run: pnpm lint:check
- name: Run build
run: pnpm build