phantasmal-world/.github/workflows/ci.yml
2020-09-29 17:37:56 +02:00

44 lines
859 B
YAML

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Yarn cache
uses: actions/cache@v2
env:
cache-name: yarn-cache
with:
path: ~/.yarn/cache
key: ${{ runner.os }}-build-${{ env.cache-name }}
- name: Install dependencies
uses: CultureHQ/actions-yarn@v1.0.1
with:
args: install
- name: Check formatting and lint
uses: CultureHQ/actions-yarn@v1.0.1
with:
args: lint
- name: Run test suite
uses: CultureHQ/actions-yarn@v1.0.1
with:
args: test
- name: Build
uses: CultureHQ/actions-yarn@v1.0.1
with:
args: build