Skip to content

times

times #1080

Workflow file for this run

name: test-game
on:
workflow_dispatch:
pull_request:
branches:
- main
paths:
- 'games/**.js'
permissions:
contents: read
pull-requests: read
jobs:
test-game:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get changed files
id: changed-files
uses: tj-actions/[email protected]
with:
files: |
games/**.js
- name: Setup Deno
uses: denoland/[email protected]
- name: Check Games
run: deno run --allow-read tests/sprigfuzzy_workflow.js ${{ steps.changed-files.outputs.all_changed_files }}