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
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

51 changes: 0 additions & 51 deletions .eslintrc.json

This file was deleted.

13 changes: 8 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,21 @@ name: "test"
on: pull_request

jobs:
build: # make sure build/ci work properly
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
cache: yarn
node-version: 20
node-version: 24

- run: yarn

- name: test
run: yarn test

- name: lint
run: |
yarn lint
Expand All @@ -31,7 +34,7 @@ jobs:
private_key: ${{ secrets.INTEGRATION_TEST_APP_PRIVATE_KEY }}

- name: Integration test - checkout private repo
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
repository: getsentry/action-github-app-token-test
token: ${{ steps.my-app.outputs.token }}
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ outputs:
token:
description: 'Github Token for App installation'
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'
Loading
Loading