Skip to content

Commit

Permalink
check on build and lint as separate workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TechandEco committed Jan 23, 2024
1 parent 4077fd7 commit 84dce08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run check
- run: npm run build
5 changes: 2 additions & 3 deletions .github/workflows/check.yml → .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

name: check
name: lint

on:
push:
Expand All @@ -24,7 +24,7 @@ on:
workflow_dispatch: # Manual runs

jobs:
typecheck:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -33,4 +33,3 @@ jobs:
node-version: 20
- run: npm ci
- run: npm run lint
- run: npm run check

0 comments on commit 84dce08

Please sign in to comment.