chore(deps): bump rollup from 4.18.0 to 4.22.4 #977
Workflow file for this run
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: Validate PR | |
on: | |
- pull_request | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18.16.0' | |
- name: Install node modules | |
run: npm install | |
- name: ESLint | |
run: npm run eslint | |
- name: Prettier | |
run: npm run prettier | |
# run this step even if the previous one failed | |
if: always() | |
- name: Typescript | |
run: npx tsc | |
- name: Knip | |
run: npm run knip | |
- name: Unit tests | |
run: npm run test:unit | |
- name: Helm | |
run: helm lint charts/substra-frontend |