Skip to content

Simple build attempt with actions #8

Simple build attempt with actions

Simple build attempt with actions #8

Workflow file for this run

name: Node CI
on: [push]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: npm install, build, and test
run: |
echo "Running npm install"
npm install
echo "Running npm run build"
npm run build
echo "Running npm run test:unit"
npm run test:unit || exit 0
- name: npm pack
run: |
echo "Running npm pack"
npm pack
ls -la