Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

fix/120-fix-student-detail-view-toggler #102

fix/120-fix-student-detail-view-toggler

fix/120-fix-student-detail-view-toggler #102

Workflow file for this run

name: pr_check
on:
pull_request:
branches:
- main
jobs:
pr_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
cache-dependency-path: ./package-lock.json
- name: Cache Node.js modules
uses: actions/cache@v3
with:
path: ${{ github.workspace }}/node_modules
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
- name: install dependencies
run: |
cd ${{ github.workspace }}
npm ci --legacy-peer-deps
- name: lint
run: |
cd ${{ github.workspace }}
npx eslint src --max-warnings 0
- name: test
run: |
cd ${{ github.workspace }}
npm run test -- --coverage
- name: build
run: |
cd ${{ github.workspace }}
npm run build
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
with:
projectBaseDir: .
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}