diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000000000..a734855fd3079 --- /dev/null +++ b/.github/workflows/test.yml @@ -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 + +