Skip to content

Commit f7b266f

Browse files
committed
Move lint earlier
1 parent 2e2c9d2 commit f7b266f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ jobs:
4343
- uses: ./.github/actions/configure-nodejs
4444
- name: Build All TypeScript
4545
run: yarn build
46+
- name: Run Lint
47+
run: yarn lint
4648
- name: Run Node Tests
4749
env:
4850
NODE_ENV: test
@@ -124,8 +126,6 @@ jobs:
124126
run: echo latest_commit="$(git ls-remote origin -h ${{ github.ref }} | cut -f1)" >> $GITHUB_OUTPUT
125127
- name: Build Publish TypeScript
126128
run: yarn build:publish
127-
- name: Run Lint
128-
run: yarn lint
129129
- name: Upload Publish Tool artifact
130130
uses: actions/upload-artifact@v3
131131
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ jobs:
6262
- uses: ./.github/actions/configure-nodejs
6363
- name: Build All TypeScript
6464
run: yarn build
65+
- name: Run Lint
66+
run: yarn lint
6567
- name: Run Node Tests
6668
env:
6769
NODE_ENV: test
@@ -131,8 +133,6 @@ jobs:
131133
node scripts/version.js ${{needs.version.outputs.version }}
132134
- name: Build Publish TypeScript
133135
run: yarn build:publish
134-
- name: Run Lint
135-
run: yarn lint
136136
- name: Upload Publish Tool artifact
137137
uses: actions/upload-artifact@v3
138138
with:

0 commit comments

Comments
 (0)