Skip to content

Commit

Permalink
Move lint earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
huntharo committed Apr 26, 2024
1 parent 2e2c9d2 commit f7b266f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jobs:
- uses: ./.github/actions/configure-nodejs
- name: Build All TypeScript
run: yarn build
- name: Run Lint
run: yarn lint
- name: Run Node Tests
env:
NODE_ENV: test
Expand Down Expand Up @@ -124,8 +126,6 @@ jobs:
run: echo latest_commit="$(git ls-remote origin -h ${{ github.ref }} | cut -f1)" >> $GITHUB_OUTPUT
- name: Build Publish TypeScript
run: yarn build:publish
- name: Run Lint
run: yarn lint
- name: Upload Publish Tool artifact
uses: actions/upload-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
- uses: ./.github/actions/configure-nodejs
- name: Build All TypeScript
run: yarn build
- name: Run Lint
run: yarn lint
- name: Run Node Tests
env:
NODE_ENV: test
Expand Down Expand Up @@ -131,8 +133,6 @@ jobs:
node scripts/version.js ${{needs.version.outputs.version }}
- name: Build Publish TypeScript
run: yarn build:publish
- name: Run Lint
run: yarn lint
- name: Upload Publish Tool artifact
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit f7b266f

Please sign in to comment.