This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
feat: ipfs helper #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit and integration Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: | | |
yarn | |
- name: Check lint | |
run: yarn lint | |
- name: Compile | |
run: yarn build | |
- name: Unit Test | |
run: yarn test | |
env: | |
API_HOST: localhost | |
API_PORT: 4100 | |