Upgrade doctrine/dbal to v3 #3210
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: Assets Code Analysis | |
| on: | |
| pull_request: null | |
| push: | |
| branches: | |
| - main | |
| 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 }} |