Skip to content

Merge pull request #2 from charlie-tango/feature/test-fixture-umbraco… #26

Merge pull request #2 from charlie-tango/feature/test-fixture-umbraco…

Merge pull request #2 from charlie-tango/feature/test-fixture-umbraco… #26

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: corepack enable
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm biome ci .
- name: Test
run: pnpm test
env:
CI: true
- name: Build
run: pnpm build