Add used in tasks info to /item and /key #835
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: [ main ] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
# validate JSON and YAML files | |
- name: json-yaml-validate | |
uses: GrantBirki/[email protected] | |
with: | |
comment: "true" | |
exclude_file: ".github/config/exclude.txt" | |
- uses: actions/[email protected] | |
with: | |
node-version-file: .node-version | |
cache: 'npm' | |
- name: Install | |
run: npm ci | |
# TODO add tests here |