Upgrate Vite 5 Update #87
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Set node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: pnpm | |
- name: Install | |
run: pnpm install | |
- name: Lint | |
run: pnpm lint | |
lhci: | |
name: Lighthouse | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Lighthouse | |
uses: shopify/lighthouse-ci-action@v1 | |
with: | |
access_token: ${{ secrets.SHOP_ACCESS_TOKEN }} | |
store: ${{ secrets.SHOP_STORE }} | |
password: ${{ secrets.SHOP_PASSWORD }} | |
lhci_github_app_token: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} | |
theme-check: | |
name: Theme Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Theme Check | |
uses: shopify/theme-check-action@v1 | |
with: | |
token: ${{ github.token }} |