File: .github/workflows/build-on-push.yml

Recommend this page to a friend!
  Classes of Dom Hastings   JS Webdav Client   .github/workflows/build-on-push.yml   Download  
File: .github/workflows/build-on-push.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: JS Webdav Client
Access files of a Webdav server
Author: By
Last change:
Date: 1 year ago
Size: 301 bytes
 

Contents

Class file image Download
name: Build and test application on push to remote on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: node-version: 12 - run: yarn install - run: yarn build - run: yarn test