test: update snapshots (not important) #126
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: CI | |
on: [push] | |
jobs: | |
test-package: | |
name: Test on Node v${{ matrix.node }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: ['16.x', '18.x', '20.x'] | |
os: [ubuntu-latest, macOS-latest] | |
steps: | |
- name: 🛎️ Checkout | |
uses: actions/checkout@v3 | |
- name: 📦 Setup pnpm | |
uses: pnpm/action-setup@v2 | |
- name: 🐧 Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'pnpm' | |
- name: 🔍 Install dependencies | |
run: pnpm install | |
- name: 🔧 Build package | |
run: pnpm build | |
- name: 🧪 Test | |
run: pnpm test | |
env: | |
CI: true |