mirror of
https://github.com/standardnotes/server
synced 2026-07-14 09:01:33 -04:00
22 lines
385 B
YAML
22 lines
385 B
YAML
name: Pull Request
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Install dependencies
|
|
run: yarn install --immutable
|
|
- name: ESLint
|
|
run: yarn lint
|
|
- name: Build
|
|
run: yarn build
|
|
- name: Test
|
|
run: yarn test
|