Skip to content

Replace custom logger with github actions log system #198

Replace custom logger with github actions log system

Replace custom logger with github actions log system #198

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Check code format
run: npm run prettier
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: npm run build