This repository has been archived by the owner on May 17, 2024. It is now read-only.
97 fe make the about section to query real data #108
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |