From 5196bd5de0fcf65a06d653d24206f75fe6fe342d Mon Sep 17 00:00:00 2001 From: Waleed Hassan Date: Mon, 30 Oct 2023 03:59:04 +0300 Subject: [PATCH] Fix indentation --- .github/workflows/update.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index db87571dd..854415f55 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -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"