Skip to content

Update dependency eslint to v9.17.0 #1704

Update dependency eslint to v9.17.0

Update dependency eslint to v9.17.0 #1704

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: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Cache
uses: actions/cache@v4.1.2
with:
path: node_modules
key: v1-${{ hashFiles('bun.lockb') }}
restore-keys: v1-
- run: bun install
- run: bun run lint
- run: bun test