dependencies: bump @typescript-eslint/eslint-plugin from 7.0.2 to 7.1.0 #237
Workflow file for this run
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
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# SPDX-FileCopyrightText: Huawei Inc. | |
# | |
name: xpanse-website-ci | |
# Run this workflow every time a new commit push to the repository | |
on: | |
pull_request: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
working-directory: ./ | |
run: npm install | |
- name: Run EsLint | |
working-directory: ./ | |
run: npx eslint . --ext .js,.jsx,.ts,.tsx --config package.json --max-warnings=0 | |
- name: Check Prettier Format | |
working-directory: ./ | |
run: npx prettier --config .prettierrc --check . | |
- name: Run TS compiler | |
working-directory: ./ | |
run: tsc | |
- name: Run build | |
working-directory: ./ | |
run: npm run build |