Skip to content

fix(items): add missing item in the list (#85) #98

fix(items): add missing item in the list (#85)

fix(items): add missing item in the list (#85) #98

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: '16.17.1'
cache: 'yarn'
- name: 📦 Install dependencies
run: yarn install
- name: 👷 Build project
run: yarn build
- name: 🧑‍🔬 Run e2e tests
run: yarn test:e2e
env:
APP_ENV: 'TEST'
FILES_PATH: ${{ secrets.FILES_PATH }}
MONGODB_URI: ${{ secrets.MONGODB_URI }}
MONGODB_TESTING_DBNAME: ${{ secrets.MONGODB_TESTING_DBNAME }}
MONGODB_USER: ${{ secrets.MONGODB_USER }}
MONGODB_PASSWORD: ${{ secrets.MONGODB_PASSWORD }}
- name: 🧑‍🔬 Run unit tests
run: yarn test