Skip to content

Path aliases are a neat language feature #7

Path aliases are a neat language feature

Path aliases are a neat language feature #7

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: 'πŸ§‘πŸ»β€πŸ’» Checkout repository'
uses: actions/checkout@v4
- name: '🌐 Set up Node.js'
uses: actions/setup-node@v4
with:
node-version: '23'
- name: 'πŸ“¦ Install pnpm'
run: npm install -g pnpm
- name: 'πŸ”— Install dependencies'
run: pnpm install
- name: 'πŸ§ͺ Testing'
run: pnpm test
- name: 'πŸ‘·πŸ» Build the project'
run: pnpm run build
- name: 'πŸš€ Deploy the project'
run: pnpm run deploy