pantry/.github/workflows/ci-scripts.yml

21 lines
420 B
YAML
Raw Normal View History

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:
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
- 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