Bump oxlint from 0.9.10 to 0.10.3 #77
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: Build and Test | |
on: [push, pull_request] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Install packages 🔧 | |
run: bun install | |
- name: Build 🚧 | |
run: bun build:bun | |
- name: Test 🪲 | |
run: bun test | |
- name: Upload Artifact 🚀 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jmap-yacl | |
path: dist/* |