-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
and deploy
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
||
|