Skip to content

Bump commonhaus/vote-record-actions from 1.0.4 to 1.0.5 #44

Bump commonhaus/vote-record-actions from 1.0.4 to 1.0.5

Bump commonhaus/vote-record-actions from 1.0.4 to 1.0.5 #44

Workflow file for this run

name: pr-check
on:
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
env:
GH_BOT_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
GH_BOT_NAME: "GitHub Action"
DENO_DIR: .deno-cache
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Cache node modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ hashFiles('deno.lock') }}
- name: Cache Deno dependencies
uses: actions/cache@v4
with:
path: ${{ env.DENO_DIR }}
key: ${{ hashFiles('deno.lock') }}
- name: Setup Deno environment
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Build info
run: deno info
- name: Build site
run: deno task build