Skip to content

comment out api call test until api and mocks implemented #29

comment out api call test until api and mocks implemented

comment out api call test until api and mocks implemented #29

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- name: Install modules
run: npm i
- name: Run linter
run: npm run lint:fix
- name: Run tests
run: npm run test:ci