Bump lodash from 4.17.21 to 4.17.23 #109
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: Test | |
| on: | |
| pull_request: | |
| jobs: | |
| CI: | |
| name: Test (Node ${{ matrix.node-version }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22, 24] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@main | |
| - name: Set up Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@main | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm install | |
| - run: npm test | |
| docker-smoke-test: | |
| name: Docker Smoke Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@main | |
| - name: Build Docker image | |
| run: docker build -t bev-test . | |
| - name: Test valid catalog-info | |
| run: docker run --rm -v ${{ github.workspace }}/sample:/workdir bev-test catalog-info.yml | |
| - name: Test invalid catalog-info fails | |
| run: | | |
| if docker run --rm -v ${{ github.workspace }}/sample:/workdir bev-test invalid-catalog-info.yml; then | |
| echo "Expected validation to fail but it passed" | |
| exit 1 | |
| fi |