Skip to content

chore(deps): update dependency eslint-plugin-perfectionist to v4.7.0 … #1368

chore(deps): update dependency eslint-plugin-perfectionist to v4.7.0 …

chore(deps): update dependency eslint-plugin-perfectionist to v4.7.0 … #1368

Workflow file for this run

# πŸ»β€β„οΈπŸ“¦ clippy-action: GitHub action to run Clippy, an up-to-date and modern version of actions-rs/clippy
# Copyright 2023-2024 Noel Towa <cutie@floofy.dev>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: CI
on:
workflow_dispatch: {}
push:
branches:
- master
paths-ignore:
- '.github/**'
- '.vscode/**'
- '.husky/**'
- '.eslintignore'
- '.gitignore'
- 'build/**'
- '**.md'
- 'LICENSE'
- 'renovate.json'
pull_request:
types: [opened, synchronize]
paths-ignore:
- '.vscode/**'
- '.husky/**'
- '.eslintignore'
- '.gitignore'
- '**.md'
- 'LICENSE'
- 'renovate.json'
jobs:
linting:
name: Lint & Testing
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint project
run: bun run lint
- name: Format project
run: bun run fmt
- name: Run tests
run: bun test