Skip to content

chore: bump version to 3.0.5 (#596) #1069

chore: bump version to 3.0.5 (#596)

chore: bump version to 3.0.5 (#596) #1069

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v1
- name: npm install, build, and test
env:
CI: true
run: |
npm install
npm run build
npm test