chore(deps): bump bootstrap from 4.6.2 to 5.0.0 #516
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: Lint ModuleSite Code | |
# Trigger the workflow on all pull requests with base branch 'master' and commits to 'master'. | |
on: | |
pull_request: | |
branches: [ "master" ] | |
push: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.MODULE_FETCH_GITHUB_TOKEN }} | |
steps: | |
- name: Checkout PR | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
# Globally caches yarn dependencies | |
cache: 'yarn' | |
- name: Install Project Dependencies | |
run: yarn install --frozen-lockfile --immutable | |
- name: Build ModuleSite | |
run: yarn run build | |
- name: Upload generated resources | |
uses: actions/upload-artifact@v3 | |
with: | |
name: generated | |
path: src/generated | |
eslint: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: Checkout PR | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
# Globally caches yarn dependencies | |
cache: 'yarn' | |
- name: Install Project Dependencies | |
run: yarn install --frozen-lockfile --immutable | |
- name: Download generated resources from build job | |
uses: actions/download-artifact@v3 | |
with: | |
name: generated | |
path: src/generated | |
- name: Lint JavaScript | |
run: yarn run lint:js --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif | |
- name: Upload analysis results to GItHub | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: eslint-results.sarif | |
wait-for-processing: true | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PR | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
# Globally caches yarn dependencies | |
cache: 'yarn' | |
- name: Install Project Dependencies | |
run: yarn install --frozen-lockfile --immutable | |
- name: Validate JavaScript Formatting | |
run: yarn run format-check:js |