test: add token #22
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: Analyze Token | |
on: | |
pull_request: | |
branches: | |
# - master | |
- feat/telegram-bot | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
name: Analyze Token | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 # Use the latest v2 for setup-node | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm install | |
- id: analyze | |
name: Run Analysis | |
run: | | |
npm run analyze | |
if [ -f summary.txt ]; then | |
echo "SKIP=false" >> "$GITHUB_ENV" | |
else | |
echo "SKIP=true" >> "$GITHUB_ENV" | |
fi | |
- name: Comment on PR | |
if: env.SKIP == 'false' | |
uses: mshick/add-pr-comment@v2 | |
with: | |
message-path: ./summary.txt | |
- name: Update build | |
if: env.SKIP == 'false' | |
run: | | |
npm run build | |
- name: Configure git | |
if: env.SKIP == 'false' | |
run: | | |
git config user.name "GitHub Action" | |
git config user.email "[email protected]" | |
- name: Commit changes | |
if: env.SKIP == 'false' | |
run: | | |
BRANCH_NAME=$(echo "${GITHUB_REF#"refs/heads/"}") | |
git add . | |
git commit -m "Automated build update" | |
git push origin HEAD:${GITHUB_HEAD_REF} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |