Skip to content

Linktree instead of blog #1

Linktree instead of blog

Linktree instead of blog #1

Workflow file for this run

name: tests
on:
workflow_dispatch:
pull_request:
branches: [ develop, main ]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
- name: Setup node env πŸ—
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
check-latest: true
- name: Install dependencies πŸ‘¨πŸ»β€πŸ’»
run: npm ci --prefer-offline --no-audit
- name: Build the site πŸ”¨
run: npm run build