mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
fe6eadedc8
* Changes for tea/cli 0.19 * wip * wip * wip * wip * wip
18 lines
351 B
YAML
18 lines
351 B
YAML
name: ci-scripts
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- scripts/**.ts
|
|
- import-map.json
|
|
|
|
jobs:
|
|
typecheck:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
TEA_SECRET: ${{ secrets.TEA_SECRET }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: teaxyz/setup@v0
|
|
- run: tea deno check --unstable --import-map=import-map.json scripts/*.ts
|