Skip to content

Semantic: better method not found reporting #574

Semantic: better method not found reporting

Semantic: better method not found reporting #574

Workflow file for this run

name: main
on:
- push
- pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
id: cache-node-modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: npm install
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
run: |
npm install
- name: npm build
run: |
npm run build
- name: npm ci
run: |
npm run ci
deploy:
runs-on: ubuntu-latest
needs: ci
if: github.ref == 'refs/heads/master' && success()
steps:
- name: Post Netlify hook
env:
NETLIFY_BUILD_HOOK: ${{ secrets.NETLIFY_BUILD_HOOK }}
run: |
curl -X POST -d {} $NETLIFY_BUILD_HOOK