build(deps): bump actions/setup-node from 4.0.4 to 4.1.0 #1438
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: Linting | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: 18 | |
- name: Environment Information | |
run: | | |
node --version | |
npm --version | |
- name: Setup | |
run: | | |
brew install ktlint | |
brew install swiftlint | |
swiftlint version | |
- name: Install dependencies | |
run: | | |
npm ci | |
- name: Linting | |
run: npm run lint | |
auto-merge: | |
runs-on: ubuntu-latest | |
needs: build | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- name: Automatically merge dependabot upgrades | |
uses: fastify/[email protected] | |
with: | |
target: minor |