Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
x17jiri committed Sep 30, 2024
1 parent 0720dc0 commit c60c0cd
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: NodeJS with Gulp

on:
push:
branches: [ "package-test" ]
pull_request:
branches: [ "package-test" ]

jobs:
build:
runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v4

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

- name: Build
run: |
npm install
npm run gulp vscode-win32-x64

0 comments on commit c60c0cd

Please sign in to comment.