fix: push Lit shadow contents directly in Vue ssr buffer #114
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 | |