Skip to content

ci: add auto-publisher workflow #26

ci: add auto-publisher workflow

ci: add auto-publisher workflow #26

Workflow file for this run

name: Tests
on: ["push", "pull_request"]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
name: Node - ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm test