Skip to content

Commit

Permalink
fix: upgrade ci to node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
Coltin Kifer committed Sep 6, 2024
1 parent 2524dbc commit 144bc8b
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ on:
- master

jobs:
smooth-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
smooth-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'

- name: Installing deps
run: npm install
- name: Installing deps
run: npm install

- name: Testing & Linting
run: |
npm run lint
npm run test
- name: Testing & Linting
run: |
npm run lint
npm run test
- name: Building packages
run: npm run build
- name: Building packages
run: npm run build

0 comments on commit 144bc8b

Please sign in to comment.