!refactor: replace node with bun (#3)
Reviewed-on: #3 Co-authored-by: Timo Behrendt <t.behrendt@t00n.de> Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
This commit was merged in pull request #3.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
@@ -10,16 +11,15 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
with:
|
||||
node-version: ${{ inputs.node-version }}
|
||||
bun-version-file: ".bun-version"
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
run: bun install --frozen-lockfile
|
||||
|
||||
- name: Run lint
|
||||
run: npm run check:code
|
||||
run: bun run check:code
|
||||
|
||||
- name: Run spellcheck
|
||||
run: npm run check:spell
|
||||
run: bun run check:spell
|
||||
|
||||
Reference in New Issue
Block a user