mirror of
https://github.com/ivabus/pantry
synced 2024-11-14 12:35:10 +03:00
11ca7336d7
* rework for single pantry * a few things missed
20 lines
406 B
YAML
20 lines
406 B
YAML
name: ci·scripts
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- .github/**.ts
|
|
|
|
jobs:
|
|
typecheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: teaxyz/setup@v0
|
|
with:
|
|
srcroot: .github
|
|
- uses: teaxyz/brewkit/actions/cache@v0
|
|
with:
|
|
cache-name: ci-scripts
|
|
- run: deno check --unstable **/*.ts
|
|
working-directory: .github
|