blowater/.github/workflows/deno.yml

74 lines
1.6 KiB
YAML
Raw Normal View History

2023-06-30 14:05:57 +00:00
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will install Deno then run `deno lint` and `deno test`.
# For more information see: https://github.com/denoland/setup-deno
name: Deno
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
TEST_NOTIFICATION_PUBKEY: ${{ vars.TEST_NOTIFICATION_PUBKEY }}
permissions:
contents: read
jobs:
test:
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
deno-version: [1.36.4]
2023-06-30 14:05:57 +00:00
steps:
- name: Setup repo
uses: actions/checkout@v3
2023-08-28 17:58:05 +00:00
with:
submodules: 'true'
2023-06-30 14:05:57 +00:00
- name: Setup Deno
uses: denoland/setup-deno@v1
- name: Verify formatting
run: make fmt-check
- name: Run tests
run: make test
- name: UI test
run: cd UI && make compile-all-tests
2023-06-30 14:05:57 +00:00
deploy:
timeout-minutes: 1
runs-on: ubuntu-latest
permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository
steps:
- name: Clone repository
uses: actions/checkout@v3
2023-08-28 17:58:05 +00:00
with:
submodules: 'true'
2023-06-30 14:05:57 +00:00
- name: Setup Deno
uses: denoland/setup-deno@v1
- name: Bundle
2023-10-31 08:27:46 +00:00
run: cd UI && make build-pwa
2023-06-30 14:05:57 +00:00
- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "blowater"
2023-07-30 06:39:53 +00:00
entrypoint: https://raw.githubusercontent.com/denoland/deno_std/0.196.0/http/file_server.ts
2023-10-31 08:27:46 +00:00
root: UI/build-pwa