Skip to content

Merge branch 'develop' of https://github.com/computas/tekniskmuseum i… #537

Merge branch 'develop' of https://github.com/computas/tekniskmuseum i…

Merge branch 'develop' of https://github.com/computas/tekniskmuseum i… #537

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Lint & Build
on:
push:
branches-ignore:
- "master"
jobs:
build:
name: Lint & Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- name: Checkout ✔️
uses: actions/checkout@v4
- name: Setup bun 🥟
uses: oven-sh/setup-bun@v1
- name: Install dependencies 📝
run: bun install
- name: Run Lint 🧼
run: bun run lint
- name: Build 🛠️
run: bun run build