fix(deps): update dependency @types/lodash to v4.17.17 #564
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: Check | |
| on: [pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| registry-url: https://registry.npmjs.org/ | |
| - run: npm install | |
| - run: npm run build | |
| - name: Check if main file exists | |
| run: | | |
| jq package.json -r .main | xargs -I {} test -f {} | |
| - run: npm run test | |
| bootstrap: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| registry-url: https://registry.npmjs.org/ | |
| - run: npm install | |
| working-directory: ./test/resources/examples/portal | |
| # Test is somehow optional? | |
| - run: npm run --if-present test | |
| working-directory: ./test/resources/examples/portal | |
| - run: npm run lint | |
| working-directory: ./test/resources/examples/portal | |
| - run: npm run build | |
| working-directory: ./test/resources/examples/portal |