Skip to content

Update test.yml

Update test.yml #15

Workflow file for this run

on:
push:
branches:
- 'master'
pull_request:
branches:
- '*'
name: cwtools
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install
- name: Set chmod
run: chmod +x ./build.sh
- name: Test
run: /bin/sh ./build.sh DryRelease
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: cwtools-vscode-pipeline.vsix
path: temp/*.vsix
retention-days: 5