-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
37 lines (34 loc) · 1 KB
/
night-ts.yml
File metadata and controls
37 lines (34 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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: