Skip to content

Commit

Permalink
chore: bump node version in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kasinskas committed Oct 3, 2023
1 parent beec4ca commit b68c8db
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/rnvUnitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@ name: Node CI
on: [push]

jobs:
build:
runs-on: ubuntu-latest
build:
runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
yarn
yarn bootstrap
yarn test
env:
CI: true
- uses: codecov/codecov-action@v3
with:
token: ${{secrets.CODECOV_TOKEN}} #required
file: ./packages/rnv/coverage/clover.xml #optional
flags: rnvunittests #optional
name: rnv #optional
steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
yarn
yarn bootstrap
yarn test
env:
CI: true
- uses: codecov/codecov-action@v3
with:
token: ${{secrets.CODECOV_TOKEN}} #required
file: ./packages/rnv/coverage/clover.xml #optional
flags: rnvunittests #optional
name: rnv #optional

0 comments on commit b68c8db

Please sign in to comment.