Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

v1.0.8

v1.0.8 #87

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Jest Tests
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set node version
uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: yarn
- run: yarn build
- run: yarn test