Release v1 - Merge #6 #11
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: CI | |
on: push | |
permissions: read-all | |
jobs: | |
test-build: | |
strategy: | |
matrix: | |
bun-version: [latest, "1.1.4"] | |
name: Test Builds | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⚙️ Checkout Repo | |
uses: actions/checkout@v4 | |
- name: 🧹 Lint Prettier | |
uses: hudsonm62/prettier-cli@v1.0.0 | |
- name: 🍞 Setup Bun ${{ matrix.bun-version }} | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: ${{ matrix.bun-version }} | |
- name: 🗃 Install Deps | |
run: bun install --frozen-lockfile #--production | |
- name: 📦 Build Package | |
run: bun run bundle -o dist-ci --debug | |
- name: ✅ Verify output with Commited | |
#uses: hudsonm62/compare-action@v1 | |
run: diff -qr dist dist-ci |