Merge pull request #54 from 0xPolygon/rahuldamodar94-patch-1 #195
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
Tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: CHECK-OUT GIT REPOSITORY | |
uses: actions/checkout@v3 | |
- name: Use Node.js (v18) | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Check ubuntu version | |
run: lsb_release -a | |
- name: Install dependencies | |
run: npm ci | |
- name: Build Packages | |
run: npm run build | |
- name: Run Unit Tests | |
run: npm run tests | |
- name: Run Integration Tests | |
run: npm run tests:integration |