Skip to content

Commit

Permalink
Test the codemod
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaub committed Dec 14, 2024
1 parent bc78b35 commit 6beadfc
Show file tree
Hide file tree
Showing 5 changed files with 1,455 additions and 13 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
versioning-strategy: increase-if-necessary
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Test

on:
push:
branches:
- main
pull_request:
branches:
- main

env:
CI: true

permissions:
contents: read

jobs:
test:
name: Test
runs-on: ubuntu-latest

steps:
- name: Clone Repository
uses: actions/checkout@v4

- name: Set Node.js Version
uses: actions/setup-node@v4
with:
node-version: '22'

- name: Install Dependencies
run: npm ci

- name: Run Tests
run: npm test
Loading

0 comments on commit 6beadfc

Please sign in to comment.