Skip to content

update init db script and documentation #184

update init db script and documentation

update init db script and documentation #184

Workflow file for this run

name: "🧪 Tests & ✨ Lint"
on:
pull_request:
branches:
- dev
- re7
- master
push:
branches:
- dev
- re7
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install Dependencies
run: yarn install
- name: Build and Compile
run: yarn compile
- name: Run Tests
run: yarn test
- name: Run Lint
run: yarn lint