Files
standardnotes-server/.github/workflows/pr.yml
T

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