Skip to content

bump version

bump version #95

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
npm test
npm pack
env:
CI: true
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: react-dnd-scrolling
path: react-dnd-scrolling-*.tgz