Add workflow

This commit is contained in:
Max Isom 2020-11-18 14:03:23 -05:00
parent dd73d8db45
commit b8daa73133
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
2 changed files with 3206 additions and 0 deletions

25
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Lint & build
on: 'push'
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

3181
yarn.lock Normal file

File diff suppressed because it is too large Load diff