Skip to content

patch/publish-fix#457 #67

patch/publish-fix#457

patch/publish-fix#457 #67

Workflow file for this run

name: CI
on:
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '10.16.1'
- name: Install Dependencies, run build, lint, and tests
run: |
npm i
npm run lint
npm run test
npm run build