chore(deps): update github/codeql-action action to v3.26.7 #657
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
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages | |
name: Build | |
on: push | |
env: | |
TOKEN_LISTS_ACTIONS_OR_CI_BUILD: true | |
DAPP_RADAR_PROJECT_ID: ${{ secrets.DAPP_RADAR_PROJECT_ID }} | |
DAPP_RADAR_API_KEY: ${{ secrets.DAPP_RADAR_API_KEY }} | |
API_AUTH_TOKEN_GITHUB: ${{ secrets.API_AUTH_TOKEN_GITHUB }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 | |
with: | |
node-version: '20.x' | |
registry-url: 'https://registry.npmjs.org' | |
- run: sudo apt-get update -y | |
- run: sudo apt-get install -y librsvg2-bin libimagequant-dev pkg-config | |
- run: npm install -g yarn | |
- run: yarn --version | |
- run: yarn | |
- run: yarn start |