Merge branch 'main' into EXT-2000-fix-issue-inside-templates #361
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |