mirror of
https://github.com/ivabus/pantry
synced 2024-11-13 03:55:18 +03:00
11ca7336d7
* rework for single pantry * a few things missed
21 lines
406 B
YAML
21 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
|