@@ -15,6 +15,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
+ - run: echo ${{github.ref}}
- run: yarn
- run: yarn run lint
- run: yarn run tsc
@@ -5,7 +5,7 @@ on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
- if: github.ref == 'master'
+ if: github.ref == 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@master