Skip to content

Commit

Permalink
fix: name에 - 프리픽스 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hanyugeon committed May 29, 2024
1 parent 68ff604 commit 9d8e489
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ on:

jobs:
lhci:
name: Lighthouse CI
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v2
- name: Lighthouse CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js 18
uses: actions/setup-node@v1
with:
node-version: 18
cache: 'yarn'
- name: Use Node.js 18
uses: actions/setup-node@v1
with:
node-version: 18
cache: 'yarn'

- name: Install packages
run: yarn install && yarn global add @lhci/cli
- name: Install packages
run: yarn install && yarn global add @lhci/cli

- name: Build
run: yarn build
- name: Build
run: yarn build

- name: Run Lighthouse CI
run: lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
- name: Run Lighthouse CI
run: lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}

0 comments on commit 9d8e489

Please sign in to comment.