chore(deps): update Grype to v0.73.2; remove snapshot tests #816
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: "Tests" | |
on: [push, pull_request] | |
jobs: | |
build: # make sure build/ci work properly and there is no faked build ncc built scripts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm ci | |
- run: npm run audit | |
- run: npm run build | |
- run: git status --porcelain | |
- run: git diff | |
- run: git diff --exit-code | |
test: | |
runs-on: ubuntu-latest | |
services: | |
registry: | |
image: registry:2 | |
ports: | |
- 5000:5000 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build images | |
run: | | |
for distro in alpine centos debian; do | |
docker build -t localhost:5000/match-coverage/$distro ./tests/fixtures/image-$distro-match-coverage | |
docker push localhost:5000/match-coverage/$distro:latest | |
done | |
- name: Inspect | |
run: | | |
docker images -a | |
for distro in alpine centos debian; do | |
docker buildx imagetools inspect localhost:5000/match-coverage/$distro:latest | |
done | |
- run: npm ci | |
- run: npm run audit | |
- run: npm test |