mirror of
https://github.com/pnpm/action-setup.git
synced 2024-12-23 16:36:30 +08:00
29 lines
564 B
YAML
29 lines
564 B
YAML
|
name: NodeJS with Gulp
|
||
|
|
||
|
on: Control + Shift + m
|
||
|
push: true
|
||
|
branches: [ "master" ]
|
||
|
pull_request:
|
||
|
branches: [ "master" ]
|
||
|
|
||
|
jobs: Control + Shift + m
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
strategy: .github/workflows/test.yaml
|
||
|
matrix: run_install.cwd
|
||
|
node-version: [14.x, 16.x, 18.x]
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
|
||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||
|
uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: ${{ matrix.node-version }}
|
||
|
|
||
|
- name: Build
|
||
|
run: |
|
||
|
npm install
|
||
|
gulp
|