Skip to content

Commit

Permalink
Test Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsandaruwan committed Feb 23, 2022
1 parent 846541f commit ce25a40
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test-suit.yml
@@ -0,0 +1,23 @@
name: Test Suit

on:
push:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

0 comments on commit ce25a40

Please sign in to comment.