mirror of
https://github.com/standardnotes/server
synced 2026-08-02 21:15:59 -04:00
20 lines
312 B
YAML
20 lines
312 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: ESLint
|
|
run: yarn lint
|
|
- name: Build
|
|
run: yarn build
|
|
- name: Test
|
|
run: yarn test
|