Files
standardnotes-app-web/.github/workflows/pr.components.yml
dependabot[bot] 9e835c3b07 chore(deps): bump actions/checkout from 2 to 3 (#1264)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-07-15 11:48:13 +02:00

39 lines
760 B
YAML

name: Components PR
on:
pull_request:
branches:
- main
paths:
- packages/components/**
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
- name: Install dependencies
run: yarn install
- name: Build components
run: yarn build:components
- name: Lint components
run: yarn lint
working-directory: packages/components
- name: Test components
run: yarn test
working-directory: packages/components
- name: Build all
run: yarn build:all
- name: Lint all
run: yarn lint
- name: Test all
run: yarn test