Skip to content

feat:#128 wrapped all the api calls into try catch block #125

feat:#128 wrapped all the api calls into try catch block

feat:#128 wrapped all the api calls into try catch block #125

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Create test directory
run: mkdir test
- name: Create test file
run: echo "This is a test" > test/test.js
- name: Build project
run: npm run build -- --include=test
- name: Run tests
run: npm test