diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index a8f98e3..ded26c8 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -11,7 +11,7 @@ on: jobs: client-build: name: Build - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest defaults: run: @@ -24,7 +24,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v2.1.5 with: - node-version: ${{ matrix.node }} + node-version: 14.x - name: Get yarn cache directory path id: yarn-cache-dir-path diff --git a/heroku.yml b/heroku.yml new file mode 100644 index 0000000..e24b4a6 --- /dev/null +++ b/heroku.yml @@ -0,0 +1,4 @@ +build: + web: cd api && go build -v main.go +run: + web: ./api/main \ No newline at end of file