Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
OGreeni committed Sep 20, 2023
1 parent 2b760f4 commit 81315d5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/eslint.yaml → .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: eslint
# This workflow builds the app, runs ESLint, and checks for TypeScript compilation errors.
name: CI
on: push
jobs:
build:
build-test-lint-tsc:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
Expand All @@ -20,3 +21,5 @@ jobs:
run: pnpm install
- name: Run ESLint
run: pnpm lint
- name: Run TypeScript compiler
run: pnpm tsc --noEmit

0 comments on commit 81315d5

Please sign in to comment.