Skip to content

improve filter ihm #3037

improve filter ihm

improve filter ihm #3037

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
pull_request:
jobs:
license-headers:
name: Check licenses headers
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- name: Checkout sources
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Check License Header (Check Mode)
uses: apache/skywalking-eyes/header@v0.5.0
with:
config: .github/config/.licenserc.yaml
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- name: Checkout sources
uses: actions/checkout@v2
with:
fetch-depth: 0
persist-credentials: false
- name: FixForNodeWarnings
run: |
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- name: Build
run: |
npm install
npm run licenses-check
npm run lint
npm run test:coverage
npm run build
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@v3.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}