mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
31 lines
501 B
YAML
31 lines
501 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: CultureHQ/actions-yarn@v1.0.1
|
|
with:
|
|
args: install
|
|
|
|
- uses: CultureHQ/actions-yarn@v1.0.1
|
|
with:
|
|
args: lint
|
|
|
|
- uses: CultureHQ/actions-yarn@v1.0.1
|
|
with:
|
|
args: test
|
|
|
|
- uses: CultureHQ/actions-yarn@v1.0.1
|
|
with:
|
|
args: build
|