Skip to content

Commit

Permalink
feat: update GitHub Action Node version
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhenson committed May 3, 2024
1 parent b1959fb commit 6a323c0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/comment-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '18.x'
- name: Run Lighthouse
uses: ./
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/extraHeaders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ jobs:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
- uses: actions/checkout@master
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '18.x'
- run: mkdir -p ${{ github.workspace }}/tmp/artifacts
- uses: amondnet/vercel-action@master
id: vercelAction
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/overrides.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '18.x'
- name: Run Lighthouse
uses: ./
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '18.x'
- run: mkdir -p ${{ github.workspace }}/tmp/artifacts
- name: Run Lighthouse
uses: ./
Expand Down

0 comments on commit 6a323c0

Please sign in to comment.