diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..f83181c --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,24 @@ +name: Test + +on: + pull_request: + types: + - opened + - edited + - reopened + +jobs: + test: + name: Just a little test + runs-on: ubuntu-latest + if: github.actor != 'dependabot[bot]' + permissions: + pull-requests: write + + steps: + - name: Test + uses: actions/github-script@v9 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + script: | + console.log('test');