Skip to content

Commit

Permalink
chore: add dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
cmackenzie1 committed Nov 18, 2024
1 parent fe029d4 commit 752bc0e
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: "weekly"
groups:
production-dependencies:
dependency-type: "production"
dev-dependencies:
dependency-type: "development"

- package-ecosystem: "github-actions"
directory: ".github/workflows"
schedule:
interval: "weekly"
24 changes: 24 additions & 0 deletions .github/workflows/workers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Workers

on:
push:
branches: ['main']
pull_request:
branches: ['main']

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: pnpm install
- name: Setup Biome
uses: biomejs/setup-biome@v2
- name: Run Biome
run: biome ci .

0 comments on commit 752bc0e

Please sign in to comment.