Skip to content

Merge pull request #31 from rustedgrail/nodash #91

Merge pull request #31 from rustedgrail/nodash

Merge pull request #31 from rustedgrail/nodash #91

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
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 }}
cache: 'npm'
- run: npm ci
- name: Run unit tests
run: npm test
- name: Build the npm package to publish
run: npm pack
- uses: actions/upload-artifact@v3
with:
name: package
path: '*.tgz'