Ditch Travis to use GitHub Actions

This commit is contained in:
Jeremy Benoist
2020-11-23 22:39:32 +01:00
parent e089c24720
commit 40c01ad1d4
9 changed files with 242 additions and 78 deletions

32
.github/workflows/assets.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: "Assets"
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
js:
name: "Building assets"
runs-on: "ubuntu-20.04"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: "Install Node"
uses: actions/setup-node@v1
with:
node-version: "12"
- name: "Install dependencies with Yarn"
run: "yarn install"
- name: "Build dev assets"
run: "yarn run build:dev"
- name: "Build prod assets"
run: "yarn run build:prod"