Skip to content

Commit

Permalink
maybe ci?
Browse files Browse the repository at this point in the history
  • Loading branch information
corners2wall committed Nov 9, 2023
1 parent 26ced61 commit 11d7b34
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,18 @@ jobs:
- name: Check out code
uses: actions/checkout@v3

- name: Setup node
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
node-version: 18
cache: yarn
cache-dependency-path: yarn.lock

- name: Install node dependencies
run: npm ci
- name: Install with Yarn
run: yarn && yarn install

- name: Run ESLint
run: npm run lint
- name: Compile with TypeScript
run: yarn tsc

- name: Lint with ESLint
run: yarn lint

0 comments on commit 11d7b34

Please sign in to comment.