bun-discord-bot/.github/workflows/validate.yml
Jozef Steinhübl 16c842808d
refactor!: rewrite (#32)
Thanks @Didas-git for big help
https://github.com/xHyroM/bun-discord-bot/pull/31

---------

Co-authored-by: DidaS <didasoficial@gmail.com>
2023-12-30 16:54:59 +01:00

35 lines
1,013 B
YAML

name: Validate
on:
pull_request_target:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: refs/pull/${{ github.event.number }}/merge
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Get changed files
uses: Mineflash07/gh-action-get-changed-files@feature/support-pr-target-event
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Update files.json file
run: cp $HOME/files.json ./scripts/validate_tags/
- name: Validate tags
run: |
bun i
bun run validate:tags
env:
github-token: ${{ secrets.GITHUB_TOKEN }}
commit-sha: ${{ github.event.pull_request.head.sha }}
pr-number: ${{ github.event.pull_request.number }}