Skip to content

Merge branch 'main' into EXT-2000-fix-issue-inside-templates #361

Merge branch 'main' into EXT-2000-fix-issue-inside-templates

Merge branch 'main' into EXT-2000-fix-issue-inside-templates #361

Workflow file for this run

name: Library
on: ['push']
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 18.16.0
cache: 'yarn'
- name: Install
run: yarn install
- name: Check Code Formatting
run: yarn prettier packages/field-plugin --check
- name: Check Types
run: yarn workspace @storyblok/field-plugin check:types
- name: Lint
run: |
yarn eslint packages/field-plugin
yarn workspaces foreach --include "helper-*" run lint
- name: Test
run: yarn workspace @storyblok/field-plugin test
- name: Build
run: yarn workspace @storyblok/field-plugin build