Skip to content

Commit

Permalink
Add path check and update ubuntu and node versions in GitHub Actions …
Browse files Browse the repository at this point in the history
…workflow
  • Loading branch information
berkerol committed Mar 3, 2025
1 parent b86903e commit 0f914f6
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
on: [push]
on:
push:
paths:
- 'app.js'
jobs:
lint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22
- name: Install semistandard
run: npm i -g semistandard
- name: Run semistandard
Expand Down

0 comments on commit 0f914f6

Please sign in to comment.