Skip to content

Added a readLogs function that prints hello world successfully as a p… #150

Added a readLogs function that prints hello world successfully as a p…

Added a readLogs function that prints hello world successfully as a p… #150

Workflow file for this run

name: Gate Keeper
on:
push:
env:
NODE_VERSION: 16
jobs:
test-lint:
name: Lint
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout ${{ github.ref_name }}
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Lint tests
run: npm run lint
test-unit:
name: Unit tests
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout ${{ github.ref_name }}
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name : upload codecov
uses: codecov/codecov-action@v3