Skip to content

Use server actions for form submits #1006

Use server actions for form submits

Use server actions for form submits #1006

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: Lint, test and build
runs-on: ubuntu-latest
strategy:
matrix:
job: [lint, test, build]
steps:
- name: Check out branch
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Set up Node.js version
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run ${{ matrix.job }}
run: npm run ${{ matrix.job }}