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: Adding functional test.
Date: 5 months ago
Size: 350 bytes
 

Contents

Class file image Download
name: Build and test application on push to remote on: push: branches: - master pull_request: branches: - master jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: node-version: 16 - run: make build - run: make test