Skip to content

Bump typescript from 5.4.5 to 5.6.2 #883

Bump typescript from 5.4.5 to 5.6.2

Bump typescript from 5.4.5 to 5.6.2 #883

Workflow file for this run

name: Build
on:
# Runs on pull requests targeting the default branch
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Allow this workflow to be called by other workflows
workflow_call:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup app
uses: ./.github/actions/setup
- name: Restore cache
uses: actions/cache@v4
with:
path: |
dist
key: ${{ runner.os }}-build-${{ hashFiles('dist') }}
restore-keys: |
${{ runner.os }}-build-
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Static HTML export
run: npm run build -- --base=${{ steps.pages.outputs.base_url }}/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./dist