muse/.github/workflows/build.yml

26 lines
774 B
YAML
Raw Normal View History

2020-11-18 20:03:23 +01:00
name: Lint & build
2020-11-18 20:05:57 +01:00
on: [push, pull_request]
2020-11-18 20:03:23 +01:00
jobs:
build:
name: Lint & build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ./node_modules
key: ${{ runner.OS }}-dependencies-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-dependencies-${{ env.cache-name }}-
${{ runner.OS }}-dependencies-
${{ runner.OS }}-
- name: Install dependencies
run: yarn install
- name: Run lint
run: yarn lint
- name: Build
run: yarn build