Skip to content

add basic deno workflow #360

add basic deno workflow

add basic deno workflow #360

Workflow file for this run

name: Build it up!
on:
# # schedule:
# # - cron: '0 0 * * *'
push:
branches:
- main
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
# - name: Setup Git
# run: |
# git config user.name "danelliottpalmer"
# git config user.email "[email protected]"
# - name: Install and Build
# run: |
# npm ci
# npm run build
# - name: Create Index.html
# run: |
# node lib/index.js
# - name: Commit Files
# run: |
# git add index.html games.ics
# git commit -m "feat(files): update static index and games calendar"
# git push origin main