[Snyk] Upgrade vite-tsconfig-paths from 5.1.2 to 5.1.4 #5298
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
on: [pull_request] | |
jobs: | |
prchecks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Configure pre-commit to skip branch name validation | |
run: | | |
echo "SKIP=branch-name-validation" >> $GITHUB_ENV | |
- uses: pre-commit/[email protected] | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- name: run unit tests | |
run: ./scripts/test-unit.sh | |
assignAuthor: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Assign PR to Creator | |
run: | | |
if [ "$PR_AUTHOR_TYPE" != "Bot" ] | |
then | |
gh pr edit $PRNUM --add-assignee $PR_AUTHOR | |
fi | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PRNUM: ${{ github.event.pull_request.number }} | |
PR_AUTHOR: ${{ github.event.pull_request.user.login }} | |
PR_AUTHOR_TYPE: ${{ github.event.pull_request.user.type }} |