mirror of
https://github.com/standardnotes/app.git
synced 2026-01-11 19:56:41 +00:00
26 lines
492 B
YAML
26 lines
492 B
YAML
name: Pull request
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- develop
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 2.6.8
|
|
- name: Install dependencies
|
|
run: yarn install
|
|
- name: Build
|
|
run: yarn build
|
|
- name: ESLint
|
|
run: yarn lint
|
|
- name: Test
|
|
run: yarn test
|