Skip to content

Merge pull request #1 from wednesday-solutions/alenbaby13-patch-1 #9

Merge pull request #1 from wednesday-solutions/alenbaby13-patch-1

Merge pull request #1 from wednesday-solutions/alenbaby13-patch-1 #9

Workflow file for this run

name: Node Express GraphQL Template CI
on: push
jobs:
build_and_test:
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Setup environment
uses: actions/setup-node@v2-beta
with:
node-version: "12"
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Build
run: yarn build:local
- name: Test
run: yarn test