Skip to content

Commit

Permalink
Showing 713 changed files with 13,519 additions and 18,664 deletions.
@@ -1,4 +1,4 @@
name: "Lint, Build & Test"
name: "PR checks"

on: [push, pull_request]

@@ -30,10 +30,38 @@ jobs:
if [ ! -z "$(git status --porcelain)" ]; then
# If we get a fail here then the PR needs attention
>&2 echo "Failed: JavaScript files are not up to date. Run 'npm run-script build' to update"
git status
exit 1
fi
echo "Success: JavaScript files are up to date"
check-node-modules:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Check node modules up to date
run: |
# Sanity check that repo is clean to start with
if [ ! -z "$(git status --porcelain)" ]; then
# If we get a fail here then this workflow needs attention...
>&2 echo "Failed: Repo should be clean before testing!"
exit 1
fi
# Reinstall modules and then clean to remove absolute paths
# Use 'npm ci' instead of 'npm install' as this is intended to be reproducible
npm ci
npm run removeNPMAbsolutePaths
# Check that repo is still clean
if [ ! -z "$(git status --porcelain)" ]; then
# If we get a fail here then the PR needs attention
>&2 echo "Failed: node_modules are not up to date. Run 'npm ci' and 'npm run removeNPMAbsolutePaths' to update"
git status
exit 1
fi
echo "Success: node_modules are up to date"
npm-test:
runs-on: ubuntu-latest

1 change: 1 addition & 0 deletions node_modules/.bin/removeNPMAbsolutePaths

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion node_modules/@actions/http-client/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions node_modules/@actions/http-client/RELEASES.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions node_modules/@actions/http-client/auth.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 14 additions & 10 deletions node_modules/@actions/http-client/index.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

111 changes: 83 additions & 28 deletions node_modules/@actions/http-client/index.js
9 changes: 7 additions & 2 deletions node_modules/@actions/http-client/interfaces.d.ts
1 change: 0 additions & 1 deletion node_modules/@actions/http-client/interfaces.js
39 changes: 16 additions & 23 deletions node_modules/@actions/http-client/node_modules/tunnel/package.json
56 changes: 28 additions & 28 deletions node_modules/@actions/http-client/package.json
13 changes: 7 additions & 6 deletions node_modules/@actions/http-client/proxy.js
30 changes: 11 additions & 19 deletions node_modules/@babel/helper-module-imports/package.json
30 changes: 11 additions & 19 deletions node_modules/@babel/helper-module-transforms/package.json
19 changes: 7 additions & 12 deletions node_modules/@babel/helper-optimise-call-expression/package.json
25 changes: 10 additions & 15 deletions node_modules/@babel/helper-replace-supers/package.json
26 changes: 9 additions & 17 deletions node_modules/@babel/helper-simple-access/package.json
23 changes: 9 additions & 14 deletions node_modules/@babel/helper-validator-identifier/package.json
31 changes: 13 additions & 18 deletions node_modules/@babel/plugin-syntax-bigint/package.json
43 changes: 17 additions & 26 deletions node_modules/@bcoe/v8-coverage/package.json
40 changes: 19 additions & 21 deletions node_modules/@istanbuljs/load-nyc-config/package.json
38 changes: 17 additions & 21 deletions node_modules/@istanbuljs/schema/package.json
49 changes: 20 additions & 29 deletions node_modules/@jest/console/node_modules/ansi-styles/package.json
53 changes: 22 additions & 31 deletions node_modules/@jest/console/node_modules/chalk/package.json
52 changes: 20 additions & 32 deletions node_modules/@jest/console/node_modules/color-convert/package.json

0 comments on commit cd95d34

Please sign in to comment.