Skip to content

ci tests using github workflows #1

ci tests using github workflows

ci tests using github workflows #1

Workflow file for this run

name: CI Testing
on:
push:
branches:
- main
jobs:
run-ci-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- 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