chore(deps): update dependency @tresjs/nuxt to v3.0.7 #3495
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: Run Tests | |
on: [push] | |
env: | |
PNPM_CACHE_FOLDER: .pnpm-store | |
HUSKY: 0 # Bypass husky commit hook for CI | |
jobs: | |
test: | |
name: Unit Test | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run Unit Tests | |
run: pnpm run test |