chore: bump dependencies #82
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: pnPm | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup pnPm | |
uses: pnpm/action-setup@v4 | |
- name: Setup NodeJS ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Test SolidJS | |
working-directory: ./packages/solid | |
run: pnpm test | |
- name: Build SolidJS | |
working-directory: ./packages/solid | |
run: pnpm build | |
- name: Test TailwindCSS | |
working-directory: ./packages/tailwindcss | |
run: pnpm test | |
- name: Build TailwindCSS | |
working-directory: ./packages/tailwindcss | |
run: pnpm build | |
- name: Test application | |
working-directory: ./apps/web | |
run: pnpm test | |
- name: Build application | |
working-directory: ./apps/web | |
run: pnpm build |