From 618912e5686778524fa016898121b5dfddd1c9d2 Mon Sep 17 00:00:00 2001 From: paul-ion Date: Sat, 21 Dec 2024 21:07:00 -0500 Subject: [PATCH] Fix yml format --- .github/workflows/tests.yml | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4940719..1763623 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,4 +1,5 @@ name: "Training Portal Tests" + on: push: branches: [main] @@ -8,22 +9,23 @@ on: jobs: tests: runs-on: ubuntu-latest + steps: - - name: Repo Checkout - uses: actions/checkout@v2 + - name: Repo Checkout + uses: actions/checkout@v2 - - name: Setup Node - uses: actions/setup-node@v1 - with: - node-version: 14 + - name: Setup Node + uses: actions/setup-node@v1 + with: + node-version: 14 - - name: Setup Portal - working-directory: ./trainingportal - run: | - npm install - config.json.docker config.json - tools/devSetup.js + - name: Setup Portal + working-directory: ./trainingportal + run: | + npm install + config.json.docker config.json + tools/devSetup.js - - name: Run Tests - working-directory: ./trainingportal - run: npm test \ No newline at end of file + - name: Run Tests + working-directory: ./trainingportal + run: npm test \ No newline at end of file