Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
thejetou committed Oct 30, 2023
1 parent 4b8e627 commit 5196bd5
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,33 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
path: damage-calc
path: damage-calc
- name: Checkout PS
uses: actions/checkout@v4
with:
repository: smogon/pokemon-showdown
path: pokemon-showdown
repository: smogon/pokemon-showdown
path: pokemon-showdown
- name: Build damage-calc
run: |-
cd damage-calc/import
npm install
npm run compile
cd ../..
cd damage-calc/import
npm install
npm run compile
cd ../..
- name: Build PS
run: |-
cd pokemon-showdown
npm install
node build
cd ..
cd pokemon-showdown
npm install
node build
cd ..
- name: Fetch sets
run: |-
cd pokemon-showdown
node --max-old-space-size=4096 tools/set-import
cd ..
rsync -v --delete -r pokemon-showdown/tools/set-import/sets/ damage-calc/import/node_modules/@smogon/sets
cd damage-calc
node import/ps-import
node import/import
cd pokemon-showdown
node --max-old-space-size=4096 tools/set-import
cd ..
rsync -v --delete -r pokemon-showdown/tools/set-import/sets/ damage-calc/import/node_modules/@smogon/sets
cd damage-calc
node import/ps-import
node import/import
- name: Commit and push if it changed
run: |-
git config user.name "Automated"
Expand Down

0 comments on commit 5196bd5

Please sign in to comment.