name: PRs and Branches
on:
- push
jobs:
tests:
runs-on: ubuntu-latest
name: Tests
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Java JDK
uses: actions/
[email protected]
with:
java-version: 11
- name: Set Up CommandBox
uses: elpete/
[email protected]
- name: Install dependencies
run: box install
- name: Start server
run: box server start
- name: Install Playwright dependencies
run: |
box playwright-cli install-deps
box playwright-cli install chromium
- name: Run TestBox Tests
run: box testbox run1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 - name: Checkout Repositoryname: PRs and Branches1 2 on:3 - push4 5 jobs:6 tests:7 runs-on: ubuntu-latest8 name: Tests9 steps:10 11 uses: actions/checkout@v212 13 - name: Setup Java JDK14 uses: actions/
[email protected] with:16 java-version: 1117 18 - name: Set Up CommandBox19 uses: elpete/
[email protected] 21 - name: Install dependencies22 run: box install23 24 - name: Start server25 run: box server start26 27 - name: Install Playwright dependencies28 run: |29 box playwright-cli install-deps30 box playwright-cli install chromium31 32 - name: Run TestBox Tests33 run: box testbox run34
GitHub Actions