Skip to content

Fixup/GitHub actions rename (#223) #287

Fixup/GitHub actions rename (#223)

Fixup/GitHub actions rename (#223) #287

Workflow file for this run

# run test suite
---
name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 10.x
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test