8000 Bump pbkdf2 from 3.1.2 to 3.1.3 (#3578) · bolt/core@8c865af · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Bump pbkdf2 from 3.1.2 to 3.1.3 (#3578) #3037

Bump pbkdf2 from 3.1.2 to 3.1.3 (#3578)

Bump pbkdf2 from 3.1.2 to 3.1.3 (#3578) #3037

name: Assets Code Analysis
on:
pull_request: null
push:
branches:
- master
jobs:
asses_code_analysis:
strategy:
fail-fast: false
matrix:
actions:
-
name: Lint Javascript files
run: npm run lint
-
name: Lint on SCSS files
run: npm run stylelint
name: ${{ matrix.actions.name }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# see https://github.com/actions/starter-workflows/blob/main/ci/node.js.yml
-
name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
# same as "npm install", just uses package-lock.json", see https://stackoverflow.com/a/53325242/1348344
- run: npm ci
- run: ${{ matrix.actions.run }}
0