Skip to content

chore: Update package and project versions to 1.6.1 #37

chore: Update package and project versions to 1.6.1

chore: Update package and project versions to 1.6.1 #37

Workflow file for this run

name: React CI
env:
VITE_ENV: test
VITE_API_URL: http://127.0.0.1:8001
VITE_PORT: 3000
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v2
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: client/package-lock.json
- name: Install Dependencies
run: |
cd client && npm install
- name: Lint
run: |
cd client && npm run lint
- name: Run Tests
run: |
cd client && npm run test --coverage
- name: Upload coverage
uses: codecov/codecov-action@v1