This repository was archived by the owner on Jul 15, 2024. It is now read-only.
Update README.md #1145
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: System Test | |
on: | |
push: | |
branches: | |
- gh-pages | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking out Repository | |
uses: actions/[email protected] | |
with: | |
ref: gh-pages | |
- name: Setting up Java 17 | |
uses: actions/[email protected] | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
java-package: jdk | |
architecture: x64 | |
- name: Setting up node.js | |
uses: actions/[email protected] | |
with: | |
node-version: '16.6.0' | |
- name: Installing dependencies | |
run: npm install | |
- name: Executing Tests | |
run: npm run test | |
env: | |
JSON_CONFIG: ${{ secrets.JSON_CONFIG }} |