Skip to content

Nightly TypeScript Run #1281

Nightly TypeScript Run

Nightly TypeScript Run #1281

Workflow file for this run

name: Nightly TypeScript Run
permissions:
contents: read
jobs:
ts-next:
name: typescript@latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: ./.github/actions/setup
- run: pnpm build
- run: pnpm add --save-dev typescript@latest --workspace-root
- run: pnpm type-check
notify:
name: Notify Discord
runs-on: ubuntu-latest
needs: [ts-next]
if: failure()
steps:
- uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
with:
webhook: ${{ secrets.TYPESCRIPT_WEBHOOK }}
status: "Failure"
title: "Latest TypeScript Run"
color: 0xcc0000
url: "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
username: GitHub Actions
# ...nightly at midnight
on:
schedule:
- cron: 0 0 * * *
workflow_dispatch: