chore(deps): update pnpm/action-setup action to v4 - autoclosed #358
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: CI | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
pull-requests: write | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-test: | |
name: π Main | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/[email protected] | |
- run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: pnpm | |
- name: π¦ Install deps (with cache) | |
run: pnpm install | |
- name: π Lint | |
run: pnpm lint | |
- name: π Build | |
run: pnpm build | |
env: | |
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }} |