You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
433 B
26 lines
433 B
name: Overseerr CI
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
push:
|
|
branches:
|
|
- develop
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-18.04
|
|
container: node:12.18-alpine
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
- name: install dependencies
|
|
env:
|
|
HUSKY_SKIP_INSTALL: 1
|
|
run: yarn
|
|
- name: lint
|
|
run: npm run lint
|
|
- name: build
|
|
run: yarn build
|