Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .eslintrc.json

This file was deleted.

17 changes: 13 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,20 @@ on:
pull_request:
push:
branches:
- master
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: npm ci
- run: npm test
- uses: actions/checkout@v6
- run: npm ci
- run: npm test
- name: Self-test
id: semver
uses: ./
with:
bump: patch
github_token: ${{ secrets.GITHUB_TOKEN }}
dry_run: true
- name: Output version
run: echo "New version is ${{ steps.semver.outputs.version }}"
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ outputs:
version_tag:
description: 'The version string used to create the tag.'
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'
branding:
icon: 'tag'
Expand Down
Loading