Skip to content

test: Node.js 23

test: Node.js 23 #244

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [16, 18, 20, 22, 23]
os: [ubuntu-latest]
steps:
- name: Checkout Git Source
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm i
- name: Continuous Integration
run: npm run ci
env:
OSS_CLIENT_ID: ${{ secrets.OSS_CLIENT_ID }}
OSS_CLIENT_SECRET: ${{ secrets.OSS_CLIENT_SECRET }}
OSS_CLIENT_REGION: ${{ secrets.OSS_CLIENT_REGION }}
OSS_CLIENT_ENDPOINT: ${{ secrets.OSS_CLIENT_ENDPOINT }}
OSS_CLIENT_BUCKET: ${{ secrets.OSS_CLIENT_BUCKET }}
- name: Code Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}