Skip to content

make the home respect the grid #76

make the home respect the grid

make the home respect the grid #76

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
env:
ENVIRONMENT: ${{ vars.ENVIRONMENT }}
GITHUB_CLIENT_ID: ${{ secrets.GIT_CLIENT_ID }}
GITHUB_CLIENT_SECRET: ${{ secrets.GIT_CLIENT_SECRET }}
GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }}
GOOGLE_APP_ORIGIN: ${{ vars.GOOGLE_APP_ORIGIN }}
permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Run tests
run: deno test
- name: Build step
run: deno task build
- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "expenso"
entrypoint: "main.ts"
root: "."