feat: cjs/esm builds #70
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: ⚡ Integration checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
lint: | |
name: ⬣ Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: 📦 Setup bun | |
uses: oven-sh/setup-bun@v1 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
# cache: 'bun' | |
cache-dependency-path: ./package.json | |
- name: 📥 Install deps | |
run: bun install --frozen-lockfile | |
- name: 📓 Format | |
run: bun run format-ci | |
- name: 🔬 Lint | |
run: bun run lint | |
typecheck: | |
name: ʦ TypeScript | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: 📦 Setup bun | |
uses: oven-sh/setup-bun@v1 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
# cache: 'bun' | |
cache-dependency-path: ./package.json | |
- name: 📥 Install deps | |
run: bun install --frozen-lockfile | |
- name: 🔎 Type check | |
run: bun type-check | |
test: | |
name: 🎯 Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: 📦 Setup bun | |
uses: oven-sh/setup-bun@v1 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
# cache: 'bun' | |
cache-dependency-path: ./package.json | |
- name: 📥 Install deps | |
run: bun install --frozen-lockfile | |
- name: 🧪 Tests | |
run: bun test-ci | |
- name: 💾 Uploading coverage artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: lcov | |
path: ./coverage/lcov.info | |
sonar: | |
name: 🛰️ Sonar | |
runs-on: ubuntu-latest | |
needs: [lint, typecheck, test] | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: 👀 Get coverage artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: lcov | |
path: ./coverage | |
- name: 📡 SonarCloud Scan | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |