chore: ci log 추가 #8
Workflow file for this run
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: Lighthouse CI | |
on: [push] | |
jobs: | |
lhci: | |
name: Lighthouse CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install Packages | |
run: | | |
echo "Installing npm packages..." | |
npm install | |
echo "Installing Lighthouse CLI..." | |
npm install -g @lhci/cli@0.8.x | |
echo "Installing pnpm..." | |
npm install -g pnpm | |
- name: Build | |
run: pnpm build | |
- name: Collect | |
run: lhci collect | |
- name: Upload | |
env: | |
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} | |
run: lhci upload |