Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d2844a0
Bump nanoid from 3.1.23 to 3.3.6
dependabot[bot] Jul 11, 2023
66a2fc7
Bump decode-uri-component from 0.2.0 to 0.2.2
dependabot[bot] Jul 11, 2023
c34b230
Bump semver from 5.7.1 to 5.7.2
dependabot[bot] Jul 11, 2023
6e49f9a
Merge pull request #5 from lucy-jane/dependabot/npm_and_yarn/semver-5…
lucy-jane Jul 11, 2023
cea9dab
Bump got and electron
dependabot[bot] Jul 11, 2023
d14de01
Bump marked from 3.0.4 to 4.0.10
dependabot[bot] Jul 11, 2023
f32768d
Merge pull request #6 from lucy-jane/dependabot/npm_and_yarn/got-and-…
lucy-jane Jul 11, 2023
a81fae4
Bump http-cache-semantics from 4.1.0 to 4.1.1
dependabot[bot] Jul 11, 2023
8b15f33
Merge pull request #7 from lucy-jane/dependabot/npm_and_yarn/marked-4…
lucy-jane Jul 11, 2023
6ce6902
Bump minimatch from 3.0.4 to 3.1.2
dependabot[bot] Jul 11, 2023
cff131f
Merge pull request #8 from lucy-jane/dependabot/npm_and_yarn/http-cac…
lucy-jane Jul 11, 2023
809e165
Merge pull request #1 from lucy-jane/dependabot/npm_and_yarn/nanoid-3…
lucy-jane Jul 11, 2023
a768134
Bump minimist from 1.2.5 to 1.2.8
dependabot[bot] Jul 11, 2023
3a1f6d6
Merge pull request #2 from lucy-jane/dependabot/npm_and_yarn/decode-u…
lucy-jane Jul 11, 2023
a1ae13e
Merge pull request #3 from lucy-jane/dependabot/npm_and_yarn/minimatc…
lucy-jane Jul 11, 2023
c131cc8
Merge pull request #4 from lucy-jane/dependabot/npm_and_yarn/minimist…
lucy-jane Jul 11, 2023
edbcca6
Bump yargs-parser and yargs
dependabot[bot] Jul 11, 2023
77fef9d
Merge pull request #9 from lucy-jane/dependabot/npm_and_yarn/yargs-pa…
lucy-jane Jul 11, 2023
0dec53b
Create npm-gulp.yml
lucy-jane Jul 11, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/npm-gulp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: NodeJS with Gulp

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

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 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
Loading