[Snyk] Security upgrade validator from 13.15.0 to 13.15.22 #1016
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - 'releases/*' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.x' | |
| - name: Installing dependencies | |
| run: npm ci | |
| - name: Check code style | |
| run: npm run check | |
| - name: Build | |
| run: npm run compile | |
| - name: Running tests | |
| run: npm run test |