Skip to content

chore(deps-dev): bump @types/node from 22.2.0 to 22.7.7 in /frontend #80

chore(deps-dev): bump @types/node from 22.2.0 to 22.7.7 in /frontend

chore(deps-dev): bump @types/node from 22.2.0 to 22.7.7 in /frontend #80

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Front-End CI/CD
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 22.x
cache: "yarn"
- name: Install the dependencies
run: |
yarn install
yarn global add jscpd
- name: Lint
run: |
jscpd --exitCode 1 src/
yarn lint
- name: Test
run: yarn test