ci(dep): bump eslint from 7.32.0 to 9.15.0 #1556
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: Validate Pull Request | |
on: | |
pull_request: | |
jobs: | |
validate-pull-request: | |
runs-on: ubuntu-latest | |
name: Validate Pull Request | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 12 | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Pull request linter action | |
uses: JulienKode/[email protected] | |
- name: Commit Linter | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
uses: wagoid/[email protected] | |
test-action: | |
runs-on: ubuntu-latest | |
name: release-it Tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 12 | |
- name: Install dependencies | |
run: npm ci | |
- name: Test running action | |
id: test-run | |
uses: ./ | |
env: | |
DEBUG: release-it:* | |
with: | |
debug: true | |
json-opts: > | |
{ | |
"dry-run": true, | |
"git": false, | |
"github": false, | |
"plugins": { | |
"@release-it/bumper": { | |
"in": { "file": "VERSION", "type": "text/plain" } | |
} | |
} | |
} |