Skip to content

Update dependency typescript to v5.9.3 #871

Update dependency typescript to v5.9.3

Update dependency typescript to v5.9.3 #871

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
pages: write
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: 24
- run: npm install
- run: npm run prettier-check
- run: npm run build
- run: npm test
- name: Configure Pages
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
uses: actions/configure-pages@v5
- name: Upload artifact for deployment
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
uses: actions/upload-pages-artifact@v4
with:
path: ./dist
- name: Deploy to GitHub Pages
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
uses: actions/deploy-pages@v4