Skip to content

Currency improvements #76

Currency improvements

Currency improvements #76

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v3
with:
version: 10
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint TypeScript
run: pnpm typecheck
- name: Run tests
run: pnpm test
- name: Build application
run: pnpm build
- name: Upload build artifact
if: success()
uses: actions/upload-artifact@v4
with:
name: web-build
path: build
retention-days: 7