Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Merge pull request #502 from storyblok/refactor/add-typescript #1690

Merge pull request #502 from storyblok/refactor/add-typescript

Merge pull request #502 from storyblok/refactor/add-typescript #1690

Workflow file for this run

name: 'Unit Tests'
# Event for the workflow
# Only trigger the current job when occurs
# a pull request target from develop and master branchs
# and a push to develop and master branches
on:
push:
branches: [ master, develop, main ]
pull_request:
branches: [ master, develop, main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- run: yarn
- run: yarn test:unit