-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (33 loc) · 881 Bytes
/
ci.yml
File metadata and controls
40 lines (33 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Check formatting
run: deno fmt --check *.ts
- name: Lint
run: deno lint
cli-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Test CLI
run: |
deno run --allow-net ./cli.ts \
${{ secrets.APP_ID }} \
${{ secrets.APP_PRIVATE_KEY_BASE64 }} \
${{ secrets.APP_INSTALLATION_ID }} \
| gh auth login --with-token
gh auth status
gh api 'installation/repositories' -q '.repositories[].name' | grep 'scala-template'