🛠️ [Vite] Mark peer deps as external #147
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: 🧪 Test | |
on: [push] | |
jobs: | |
test: | |
name: Run test suites | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🗳️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: 🔧 Setup Node 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: 📦 Install dependencies | |
run: npm ci | |
- name: 🧑🔬 Test | |
run: npm run test |