Skip to content

Commit

Permalink
Merge pull request #9 from willryan-stemcell/master
Browse files Browse the repository at this point in the history
Update node to v16 and other small updates/improvements
  • Loading branch information
manrueda committed May 29, 2023
2 parents 0dffee3 + 939845f commit c0ca7c1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/main.yml
@@ -1,4 +1,4 @@
on: [push]
on: [push, workflow_dispatch]

jobs:
test:
Expand All @@ -7,16 +7,17 @@ jobs:
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Audit URLs using Lighthouse
uses: treosh/lighthouse-ci-action@v2
uses: treosh/lighthouse-ci-action@v10
with:
runs: 3
urls: |
https://github.com/
https://duckduckgo.com/
https://web.dev
https://web.dev/measure/
- name: Lighthouse Report
uses: ./ # Uses an action in the root directory
if: always()
with:
reports: '.lighthouseci'
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions action.yml
Expand Up @@ -11,5 +11,5 @@ inputs:
description: 'Github Token'
required: true
runs:
using: 'node12'
main: 'dist/index.js'
using: 'node16'
main: 'dist/index.js'

0 comments on commit c0ca7c1

Please sign in to comment.