-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from felixSchober/develop
Develop
- Loading branch information
Showing
9 changed files
with
25 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: eslint | ||
on: [pull_request] | ||
jobs: | ||
eslint: | ||
name: runner / eslint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: eslint | ||
uses: reviewdog/action-eslint@v1 | ||
with: | ||
reporter: github-pr-review | ||
eslint_flags: 'src --ext ts' | ||
fail_on_error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,13 +20,13 @@ jobs: | |
run: git fetch --prune --unshallow | ||
|
||
- name: install gitversion tool | ||
uses: gittools/actions/gitversion/[email protected] | ||
uses: gittools/actions/gitversion/[email protected].5 | ||
with: | ||
versionSpec: '5.1.x' | ||
|
||
- name: execute gitversion | ||
id: gitversion # step id used as reference for output values | ||
uses: gittools/actions/gitversion/[email protected] | ||
uses: gittools/actions/gitversion/[email protected].5 | ||
|
||
- name: print gitversion | ||
run: | | ||
|
@@ -37,15 +37,15 @@ jobs: | |
echo "SemVer: ${{ steps.gitversion.outputs.semVer }}" | ||
- name: setup node | ||
uses: actions/setup-node@v1 | ||
uses: actions/setup-node@v2.1.2 | ||
with: | ||
node-version: '12.x' | ||
|
||
- name: clean install dependencies | ||
run: npm ci | ||
|
||
- name: update metadata in package.json | ||
uses: onlyutkarsh/[email protected].1 | ||
uses: onlyutkarsh/[email protected].2 | ||
with: | ||
files: '${{github.workspace}}/package.json' | ||
patch-syntax: | | ||
|
@@ -54,7 +54,7 @@ jobs: | |
= /description => "Local source control for Power Apps portals code for web files like images or style sheets, web templates and content snippets." | ||
- name: add version in CHANGELOG.md | ||
uses: cschleiden/replace-tokens@v1.0 | ||
uses: cschleiden/replace-tokens@v1 | ||
with: | ||
files: '${{github.workspace}}/CHANGELOG.md' | ||
env: | ||
|
@@ -68,7 +68,7 @@ jobs: | |
echo "VSIX Path: ${{ env.vsix_path }}" | ||
- name: upload vsix as artifact | ||
uses: actions/upload-artifact@v1 | ||
uses: actions/upload-artifact@v2.2.0 | ||
with: | ||
name: powerapps-portal-local-development-${{steps.gitversion.outputs.semVer}}.vsix | ||
path: ${{github.workspace}}/powerapps-portal-local-development-${{steps.gitversion.outputs.semVer}}.vsix | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* eslint-disable @typescript-eslint/naming-convention */ | ||
export interface ID365PublishingState { | ||
adx_publishingstateid: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters