Skip to content

Commit

Permalink
chore(ci): setup ci for server
Browse files Browse the repository at this point in the history
  • Loading branch information
theforbiddenpool committed May 14, 2022
1 parent 44d9270 commit 7dafaf0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ci-server

on:
push:
paths:
- 'server/**'

defaults:
run:
working-directory: server

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
cache: 'yarn'
cache-dependency-path: server/yarn.lock
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint

0 comments on commit 7dafaf0

Please sign in to comment.