fix: updating build (#45) #122
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: | |
- master | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
lint: | |
name: ⬣ ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: 📦 Setup bun | |
uses: oven-sh/setup-bun@v2 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
cache-dependency-path: ./package.json | |
- name: 📥 Install deps | |
run: bun install --frozen-lockfile | |
- name: 🔬 Lint | |
run: bun lint | |
typecheck: | |
name: ʦ TypeScript | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: 📦 Setup bun | |
uses: oven-sh/setup-bun@v2 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
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: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: 📦 Setup bun | |
uses: oven-sh/setup-bun@v2 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
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: ⬇️ 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 }} |