Skip to content

Merge branch 'main' of https://github.com/ShapescapeMC/StorageAPI #19

Merge branch 'main' of https://github.com/ShapescapeMC/StorageAPI

Merge branch 'main' of https://github.com/ShapescapeMC/StorageAPI #19

Workflow file for this run

name: Tests
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
do-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test