Skip to content

Commit

Permalink
try in this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
davethepunkyone committed Nov 5, 2024
1 parent 91f9fb6 commit 2d09df3
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/axe-dependency-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,34 +12,27 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- run: |
git checkout -b axe-dependency-check
git checkout ${{ github.head_ref || github.ref_name }}
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: Install axe-core in temp dir
run: |
ls
cd utils/resources
mkdir temp
cd temp
npm install axe-core
- name: Retrieve axe.js file
run: |
cd utils/resources/temp/node_modules/axe-core
ls
mv axe.js ../../../
- name: Remove temp directory
run: |
cd utils/resources
ls
rm -rf temp
echo which branch are we on
git branch --show-current
- name: Commit to branch
- name: Commit to axe-dependency-check branch
run: |
echo which branch are we on
git branch --show-current
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add utils/resources/axe.js
Expand Down

0 comments on commit 2d09df3

Please sign in to comment.