Add documentation for access token (#124) #628
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: 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/[email protected] | |
with: | |
config: .github/config/.licenserc.yaml | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- 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/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |