Skip to content

Remove unnecessary files from npm package #114

Remove unnecessary files from npm package

Remove unnecessary files from npm package #114

Workflow file for this run

name: CI Build
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Node.js (${{ matrix.node-version }})
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
- name: Build and run tests
run: npm run build && npm run ci-test