Skip to content

Merge pull request #278 from kufu/renovate/patch-storybook-monorepo #1663

Merge pull request #278 from kufu/renovate/patch-storybook-monorepo

Merge pull request #278 from kufu/renovate/patch-storybook-monorepo #1663

Workflow file for this run

name: test
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
name: Node.js ${{ matrix.os }} ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x, 18.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, and yarn test
run: |
yarn install
yarn test
env:
CI: true