Skip to content

feat: Configure automated NPM publishing, update package metadata, an… #8

feat: Configure automated NPM publishing, update package metadata, an…

feat: Configure automated NPM publishing, update package metadata, an… #8

Workflow file for this run

name: CI
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "main" ]
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Tests
run: npm test
- name: Run Build
run: npm run build