Bump @types/node from 22.6.1 to 22.8.7 in /samples/node-contract #113
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: Skip status checks | |
on: | |
pull_request: | |
paths: | |
- '*.md' | |
- 'docs/**' | |
- 'samples/**' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No lint required"' | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
goarch: [amd64] | |
steps: | |
- run: 'echo "No build required"' | |
docker_build: | |
name: Docker build | |
uses: ./.github/workflows/status-checks-docker.yml |