Skip to content

chore(deps): Bump dompurify from 3.1.6 to 3.2.4 in /userdocs in the npm_and_yarn group #3078

chore(deps): Bump dompurify from 3.1.6 to 3.2.4 in /userdocs in the npm_and_yarn group

chore(deps): Bump dompurify from 3.1.6 to 3.2.4 in /userdocs in the npm_and_yarn group #3078

Workflow file for this run

name: run tests
on: [pull_request, workflow_dispatch, push]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: yitsushi/devmapper-containerd-action@bfb86f4fe3121aeb8a1b06601b3f07d064665204 # v1.0.1
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version-file: '${{ github.workspace }}/go.mod'
check-latest: true
cache: false
- name: Build
run: make build
- name: Build e2e
run: make compile-e2e
- name: Test with coverage
run: |
export CTR_SOCK_PATH=/var/run/containerd/containerd.sock
make test-with-cov
env:
CTR_SOCK_PATH: /run/containerd/containerd.sock
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}