fix(deps): update github.com/chromedp/cdproto digest to 01948a1 #221
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Check out repository | |
- name: Set up mise | |
uses: jdx/mise-action@v2 | |
with: | |
cache_key_prefix: mise-v0-stable | |
- run: mise run lint | |
test: | |
name: Test/ Go (${{ matrix.mise-env }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
mise-env: ["stable", "oldstable"] | |
env: | |
MISE_ENV: ${{ matrix.mise-env }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up mise | |
uses: jdx/mise-action@v2 | |
with: | |
cache_key_prefix: mise-v0-${{ matrix.mise-env }} | |
- name: Set up mmdc | |
run: | | |
npm install | |
# Hack to work around | |
# https://github.com/mermaid-js/mermaid-cli/issues/730 | |
patch node_modules/@mermaid-js/mermaid-cli/src/index.js <<EOF | |
186c186,187 | |
< headless: 'shell' | |
--- | |
> headless: 'shell', | |
> args: ['--no-sandbox'] | |
EOF | |
- name: Test | |
run: mise run test:cover -race | |
- name: Upload coverage | |
uses: codecov/codecov-action@v5 |