fix: drop Node 16 #3
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
name: NodeJS with Gulp | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [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 | |