chore(deps-dev): bump @types/node from 22.8.0 to 22.8.2 (#68) #180
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: yarnci-lint | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
yarnci: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
pull-requests: read # for yarnci/yarnci-lint-action to fetch pull requests | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: yarn | |
node-version: lts/* | |
- name: install | |
uses: borales/actions-yarn@v5 | |
with: | |
cmd: install --frozen-lockfile | |
- name: lint | |
uses: borales/actions-yarn@v5 | |
with: | |
cmd: lint |