Skip to content

add cloud test pool

add cloud test pool #8

Workflow file for this run

name: New launch pool
on:
pull_request:
branches:
- main
jobs:
pairs_changed_files:
runs-on: ubuntu-20.04
outputs:
json: ${{steps.changed-files-specific.outputs.any_changed}}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get specific changed files
id: changed-files-specific
uses: tj-actions/[email protected]
with:
files: |
pairs.json
format_check:
runs-on: ubuntu-20.04
needs: pairs_changed_files
if: needs.pairs_changed_files.outputs.json == 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.14.2
- run: npm install
shell: bash
- run: npm run test
shell: bash