Compare commits

..

8 Commits

Author SHA1 Message Date
5689bbdcd0 Update csc.json 2019-10-10 17:27:21 -04:00
39bfcfef74 Update csc.json 2019-10-10 17:25:06 -04:00
893aeb5420 Fix my missing quote 2019-10-10 15:05:42 -04:00
b90f08a647 Using correct msCompile regex 2019-10-10 15:01:09 -04:00
d9c317d9d5 Revert "Fixed matcher regex"
This reverts commit c61e78b585.
2019-10-10 14:51:48 -04:00
c61e78b585 Fixed matcher regex 2019-10-10 14:48:45 -04:00
6c0e2a2a6b Update action.yml 2019-09-12 10:37:27 -04:00
a2db70294c Update .gitignore (#26) 2019-08-27 11:13:13 -04:00
3 changed files with 97 additions and 10 deletions

5
.github/csc.json vendored
View File

@ -4,12 +4,13 @@
"owner": "csc", "owner": "csc",
"pattern": [ "pattern": [
{ {
"regexp": "^([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(CS\\d+)\\s*:\\s*(.*)$", "regexp": "^(?:\\s+\\d+\\>)?([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\)\\s*:\\s+(error|warning|info)\\s+(\\w{1,2}\\d+)\\s*:\\s*(.*)(\\[(.+)\\/([^\\/]+)\\])$",
"file": 1, "file": 1,
"location": 2, "location": 2,
"severity": 3, "severity": 3,
"code": 4, "code": 4,
"message": 5 "message": 5,
"fromPath": 7
} }
] ]
} }

97
.gitignore vendored
View File

@ -1,7 +1,92 @@
# runtime dependencies are checked in # Explicitly not ignoring node_modules so that they are included in package downloaded by runner
# dev dependencies are *not* checked in !node_modules/
node_modules/.bin
node_modules/typescript
node_modules/@types
node_modules/prettier
__tests__/runner/* __tests__/runner/*
# Rest of the file pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
jspm_packages/
# TypeScript v1 declaration files
typings/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
.env.test
# parcel-bundler cache (https://parceljs.org/)
.cache
# next.js build output
.next
# nuxt.js build output
.nuxt
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/

View File

@ -7,6 +7,7 @@ inputs:
# Deprecated option, do not use. Will not be supported after October 1, 2019 # Deprecated option, do not use. Will not be supported after October 1, 2019
version: version:
description: 'Deprecated. Use dotnet-version instead. Will not be supported after October 1, 2019' description: 'Deprecated. Use dotnet-version instead. Will not be supported after October 1, 2019'
deprecationMessage: 'The version property will not be supported after October 1, 2019. Use dotnet-version instead'
runs: runs:
using: 'node12' using: 'node12'
main: 'lib/setup-dotnet.js' main: 'lib/setup-dotnet.js'