This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
tmp: fix CI build for weekend #609
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://docs.deno.com/deploy/manual/ci_github | |
name: ci.deno | |
on: [push] | |
jobs: | |
deno: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write # The OIDC ID token is used for authentication with JSR. | |
environment: development | |
env: | |
TEST_SAMPLE: ${{ secrets.TEST_SAMPLE }} | |
DENO_SUBHOSTING_ACCESS_TOKEN: ${{ secrets.DENO_SUBHOSTING_ACCESS_TOKEN }} | |
DENO_SUBHOSTING_DEPLOY_ORG_ID: ${{ secrets.DENO_SUBHOSTING_DEPLOY_ORG_ID }} | |
PRIVY_APP_ID: ${{ secrets.PRIVY_APP_ID }} | |
PRIVY_APP_SECRET: ${{ secrets.PRIVY_APP_SECRET }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Info (Deno Version) | |
run: deno --version | |
- name: CI → type check (publish --dry-run) | |
run: deno task dry | |
- name: CI → tests | |
run: deno task test | |
- name: CI → lint | |
run: deno task lint | |
- name: Info (Monorepo) | |
run: deno task info |