Skip to content

🚀 Make the package public #4

🚀 Make the package public

🚀 Make the package public #4

Workflow file for this run

name: CI
permissions:
contents: read
on: ['push', 'pull_request']
jobs:
ci:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
node: [20.12]
pnpm: [9.0.6]
experimental: [false]
name: 👷 CI Node-${{ matrix.node }} on ${{ matrix.os }}
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v4
- name: 🎉 Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: ⚡️ Setup PNPM
uses: pnpm/action-setup@v3
with:
version: ${{ matrix.pnpm }}
- name: 📦️ Fix code style and build for production
run: make build
- name: 🧪 Test code style and components
run: make test