mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-15 16:06:41 +03:00
d1f00b897c
This ports over internal tests suggested in #3889.
29 lines
681 B
YAML
29 lines
681 B
YAML
name: Test Update Issues Tool
|
|
|
|
on:
|
|
pull_request: # Trigger for pull requests.
|
|
types: [opened, synchronize, reopened]
|
|
paths:
|
|
.github/workflows/tools/update-issues/**
|
|
workflow_dispatch: # Allows for manual triggering.
|
|
inputs:
|
|
ref:
|
|
description: "The ref to build and test."
|
|
required: False
|
|
|
|
jobs:
|
|
test:
|
|
name: Test Update Issues Tool
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: ${{ github.event.inputs.ref || github.ref }}
|
|
|
|
- name: Test
|
|
run: |
|
|
cd .github/workflows/tools/update-issues
|
|
npm install
|
|
npm test
|