fix: updated @lit-labs/ssr to 3.2.1 and nuxt to 3.9.1 #106
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: PR Check | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: npm ci | |
- name: Install Nuxt 3 Playground dependencies | |
run: cd playground && npm i | |
- name: Prepare | |
run: npm run dev:prepare | |
- name: Build packages | |
run: npm run build | |
- name: Test Nuxt 3 | |
run: npm test | |