Skip to content

fix(wtapeth): adhere to checks-effects-interactions pattern when wrap… #168

fix(wtapeth): adhere to checks-effects-interactions pattern when wrap…

fix(wtapeth): adhere to checks-effects-interactions pattern when wrap… #168

Workflow file for this run

name: Build And Test
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Setup env
run: cp .env.example .env
- name: Install dependencies
run: npm install
- name: Run test
run: npm test
- name: Coverage test
run: npm run coverage