Skip to content

Commit

Permalink
Create npm-gulp.yml
Browse files Browse the repository at this point in the history
and deploy
  • Loading branch information
mlavi authored Feb 1, 2024
1 parent 29b0646 commit 0166007
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/npm-gulp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: NodeJS with Gulp

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
npm install
gulp
- name: Deploy GitHub Pages site
uses: actions/[email protected]
with:
# GitHub token
token: # default is ${{ github.token }}
# Time in milliseconds after which to timeout and cancel the deployment (default: 10 minutes)
timeout: # optional, default is 600000
# Maximum number of status report errors before cancelling a deployment (default: 10)
error_count: # optional, default is 10
# Time in milliseconds between two deployment status report (default: 5 seconds)
reporting_interval: # optional, default is 5000
# Name of the artifact to deploy
artifact_name: kanister.io
# Is this attempting to deploy a pull request as a GitHub Pages preview site? (NOTE: This feature is only in alpha currently and is not available to the public!)
preview: false



0 comments on commit 0166007

Please sign in to comment.