2023-02-11 17:59:00 +03:00
|
|
|
name: ci·scripts
|
2023-01-07 01:50:26 +03:00
|
|
|
|
2022-09-08 23:40:35 +03:00
|
|
|
on:
|
|
|
|
pull_request:
|
2023-01-14 23:57:43 +03:00
|
|
|
paths:
|
2023-02-24 23:50:10 +03:00
|
|
|
- .github/**.ts
|
2022-09-08 23:40:35 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
typecheck:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-12-21 01:07:48 +03:00
|
|
|
- uses: teaxyz/setup@v0
|
2023-02-24 23:50:10 +03:00
|
|
|
with:
|
|
|
|
srcroot: .github
|
|
|
|
- uses: teaxyz/pantry.core/.github/actions/cache@main
|
|
|
|
with:
|
|
|
|
cache-name: ci-scripts
|
|
|
|
- run: deno check --unstable **/*.ts
|
|
|
|
working-directory: .github
|