Skip to content

Check sources

Check sources #843

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: Get Deno
run: |
cmd /c if exist %DENO_ROOT_PATH% rmdir /q/s %DENO_ROOT_PATH%
cmd /c if not exist %DENO_ROOT_PATH% mkdir %DENO_ROOT_PATH%
cmd /c echo Downloading Deno for Windows
cmd /c %GITHUB_WORKSPACE%\githubScripts\get-deno.cmd %DENO_ROOT_PATH%
env:
DENO_ROOT_PATH: ${{ runner.temp }}\\deno
GITHUB_WORKSPACE: ${{ github.workspace }}
- name: Check sources
run: |
cmd /c %GITHUB_WORKSPACE%\githubScripts\levain-chech.cmd %DENO_ROOT_PATH%\deno
env:
DENO_ROOT_PATH: ${{ runner.temp }}\\deno
GITHUB_WORKSPACE: ${{ github.workspace }}