This commit is contained in:
jr 2024-04-23 09:24:50 -04:00 committed by GitHub
commit 2134f64745
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 43 additions and 0 deletions

28
.github/workflows/npm-grunt.yml vendored Normal file
View file

@ -0,0 +1,28 @@
name: NodeJS with Grunt
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
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
grunt

15
.vscode/launch.json vendored
View file

@ -4,6 +4,21 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "C#: <project-name> Debug",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/<relative-path-to-project-folder><project-name>.csproj"
},
{
"name": "C#: <swift> Debug",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/<relative-path-to-project-folder><project-name>.csproj"
},
{
"name": "Debug Jest Tests on Nix",
"type": "node",