Skip to content

Merge pull request #70 from akashic-games/add-composite-operation #527

Merge pull request #70 from akashic-games/add-composite-operation

Merge pull request #70 from akashic-games/add-composite-operation #527

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
name: "Node ${{ matrix.node }} / ${{ matrix.os }}"
strategy:
matrix:
os: [ubuntu-latest]
node: [18.x, 20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Run test
run: |
npm ci
npm test