Skip to content

Commit

Permalink
fix syntax hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
bdami-gavant committed Mar 19, 2024
1 parent ef07a03 commit 075cced
Showing 1 changed file with 22 additions and 23 deletions.
45 changes: 22 additions & 23 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,31 @@
name: Run Unit Tests

on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
pull_request:
branches:
- 'main'

jobs:
build:
runs-on: ubuntu-latest
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
# Manual Checkout
- uses: actions/checkout@v3
steps:
# Manual Checkout
- uses: actions/checkout@v3

# Set up Node
- uses: actions/setup-node@v3
with:
node-version: '18.x'
# Set up Node
- uses: actions/setup-node@v3
with:
node-version: '18.x'

#- Run Tests
- name: Execute Unit Tests
- run: yarn install
- run: yarn test
# Run Tests
- run: yarn install
- run: yarn test

0 comments on commit 075cced

Please sign in to comment.