build(deps-dev): bump @types/node from 20.17.32 to 24.3.0 #1800
This file contains hidden or 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: Feature Branch Workflow | |
on: | |
pull_request: | |
branches: [ develop, release/* ] | |
paths-ignore: | |
- '**/*.md' | |
- 'LICENSE' | |
- '.gitignore' | |
jobs: | |
Build-Test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Checkout devops repo | |
uses: actions/checkout@v3 | |
with: | |
repository: US-EPA-CAMD/devops | |
path: devops | |
- name: Setup & Configure Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
registry-url: https://npm.pkg.github.com/ | |
scope: '@us-epa-camd' | |
- name: Configure Env Vars | |
run: devops/scripts/environment-variables.sh | |
env: | |
ENV_VAR_PREFIX: EASEY | |
- name: Build | |
run: devops/scripts/yarn/build.sh | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Unit Tests | |
run: devops/scripts/yarn/unit-tests.sh | |
- name: SonarCloud Scan | |
uses: sonarsource/sonarqube-scan-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |