Skip to content

Commit

Permalink
Attempt to fix github actions issues #68
Browse files Browse the repository at this point in the history
  • Loading branch information
jpaten committed Oct 25, 2023
1 parent 9500ea6 commit fcae27c
Show file tree
Hide file tree
Showing 3 changed files with 253 additions and 143 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- name: Checkout Git repo
Expand All @@ -25,8 +25,8 @@ jobs:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

- run: yarn install
- run: npm install

- run: yarn build
- run: npm run build
env:
CI: true
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

- name: Install dependencies
run: yarn install
run: npm install

- name: Run linters
run: yarn lint
run: npm run lint
Loading

0 comments on commit fcae27c

Please sign in to comment.