Skip to content

Commit

Permalink
modified actions second time
Browse files Browse the repository at this point in the history
  • Loading branch information
shebz2023 committed Mar 17, 2024
1 parent 2402cb5 commit dab05dc
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci-cd-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,28 @@ name: Run Tests
on:
push:
branches:
- main
- main

jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
runs-on: windows-latest

strategy:
matrix:
node-version: [20.11.0]

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Node.js
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20.11.0.'
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: npm install
run: npm install

- name: Run Tests
run: npm test
run: npm test

0 comments on commit dab05dc

Please sign in to comment.