Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: 'Validate build'
run: |
npm install
npm ci
npm run build

- name: 'Run L0 tests'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/github_actions_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ jobs:
with:
node-version: '18.x'

- name: npm install, build, and test
- name: npm ci, build, and test
run: |
cd nodeapp
npm install
npm ci
npm run build --if-present
npm run test --if-present

Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/pr_check_webapp_dotnet_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,8 @@ jobs:
- name: Installing dependencies and building latest changes
run: |
cd webapps-deploy
if (-NOT(TEST-PATH node_modules))
{
npm install
npm run build
}
npm ci
npm run package

- name: Azure authentication
uses: azure/login@v2
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/pr_check_windows_container_pubprofile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,8 @@ jobs:
- name: Installing dependencies and building latest changes in action
run: |
cd webapps-deploy
if (-NOT(TEST-PATH node_modules))
{
npm install
npm run build
}
npm ci
npm run package

- name: 'Deploy to Azure WebApp'
uses: ./webapps-deploy/
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

# Bundled output (built during release)
dist/
lib/

# User-specific files
*.suo
*.user
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: '10.x'
- name: 'npm install, build, and test'
- name: 'npm ci, build, and test'
run: |
npm install
npm ci
npm run build --if-present
npm run test --if-present

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ branding:
color: 'blue'
runs:
using: 'node20'
main: 'lib/main.js'
main: 'dist/index.js'
2 changes: 0 additions & 2 deletions lib/ActionInputValidator/ActionValidators/IValidator.js

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading