Skip to content

Commit

Permalink
Setup ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinresol committed May 21, 2020
1 parent 8453538 commit 6127d74
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 26 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"

- uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/cache@v1
with:
path: ~/haxe
key: ${{ runner.os }}-haxe-${{ hashFiles('haxe_libraries/*') }}
restore-keys: |
${{ runner.os }}-haxe-
- uses: lix-pm/setup-lix@master
- run: lix download
- run: haxe demo.hxml
- run: yarn && yarn build-storybook
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

0 comments on commit 6127d74

Please sign in to comment.