Merge pull request #248 from EGO-Tech/dependabot/npm_and_yarn/www/dis… #810
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: YOLOL | |
on: | |
push: | |
pull_request: | |
branches: [master] | |
permissions: {} | |
jobs: | |
build: | |
name: Validate YOLOL | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
statuses: write | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.17.3' | |
- name: Setup yodk | |
run: go install github.com/dbaumgarten/yodk@latest | |
- name: Validate | |
run: | | |
yodk verify ./**/**/*.yolol | |
yodk verify ./**/**/**/*.yolol | |
yodk verify ./**/**/**/**/*.yolol | |
yodk verify ./**/**/**/**/**/*.yolol |