Skip to content

Commit

Permalink
Add Test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
blu3mania committed Apr 1, 2023
1 parent 186a646 commit 144c205
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test

on:
workflow_dispatch:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
branches: [main]

jobs:
Test:
runs-on: windows-latest
strategy:
matrix:
node: [16, 18]

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install required node.js version
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

- name: Test package installation
run: npm install

0 comments on commit 144c205

Please sign in to comment.