Add package to query indexeddb database and parse results #4024
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: actionlint | |
# See https://github.com/rhysd/actionlint | |
on: | |
pull_request: | |
branches: | |
- main | |
- master | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
actionlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: './go.mod' | |
check-latest: true | |
- name: install actionlint | |
run: go install github.com/rhysd/actionlint/cmd/actionlint@latest | |
- name: actionlint | |
run: | | |
echo "::add-matcher::.github/actionlint-matcher.json" | |
actionlint -color |