Skip to content

meta: fix publish workflow (#85) #11

meta: fix publish workflow (#85)

meta: fix publish workflow (#85) #11

Workflow file for this run

name: Jest Tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
check-latest: true
registry-url: https://registry.npmjs.org/
- name: Install Dependencies
run: npm install
- name: Run Jest tests
run: npm run test