Skip to content

Check sources

Check sources #846

Workflow file for this run

name: Check sources
on:
#push:
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '30 4 * * SUN'
jobs:
checkSources:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check sources
shell: cmd
run: |
if exist %DENO_ROOT_PATH% rmdir /q/s %DENO_ROOT_PATH%
if not exist %DENO_ROOT_PATH% mkdir %DENO_ROOT_PATH%
echo Downloading Deno for Windows
%GITHUB_WORKSPACE%\githubScripts\get-deno.cmd %DENO_ROOT_PATH%
%GITHUB_WORKSPACE%\githubScripts\levain-check.cmd %DENO_ROOT_PATH%\deno
env:
DENO_ROOT_PATH: ${{ runner.temp }}\deno
GITHUB_WORKSPACE: ${{ github.workspace }}