Skip to content

modified actions second time #8

modified actions second time

modified actions second time #8

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
jobs:
test:
name: Run Tests
runs-on: windows-latest
strategy:
matrix:
node-version: [20.11.0]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test