Skip to content

Commit

Permalink
ci tests using github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelsideguide committed Feb 27, 2024
1 parent 623e660 commit 5e4a59d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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

0 comments on commit 5e4a59d

Please sign in to comment.