Skip to content

Commit 6a6af31

Browse files
authored
updated packages to latest version (#1)
## System changed - Dependency versions - Build ## Description Updated packages to latest version to support new features available in GitHub Actions, including GitHub enterprise edition (this PR brings that new functionality: actions/toolkit#794). Some dependency types have changed and they have been updated to the new types. The `octokitHack.ts` file is no longer needed as that bug has been fixed: actions/toolkit#228 The build directory has been recreated.
1 parent 114c0d1 commit 6a6af31

18 files changed

+10912
-18310
lines changed

.github/workflows/javascript-test.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
name: Continuous testing
3+
4+
on:
5+
pull_request:
6+
types: [
7+
'opened',
8+
'synchronize'
9+
]
10+
push:
11+
branches:
12+
- master
13+
14+
jobs:
15+
test-action:
16+
name: Action test
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v1
20+
- name: Use node 12
21+
uses: actions/setup-node@v1
22+
with:
23+
node-version: 12
24+
- name: install
25+
run: npm ci
26+
- name: test-lint
27+
run: npm run test:lint
28+
- name: test-unit
29+
run: npm run test:unit
30+
- name: build
31+
run: npm run build

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ Pull Request Automated Convention Enforcer
1010
A GitHub action that checks if a PR complies with a given configuration
1111

1212
[![CodeFactor](https://www.codefactor.io/repository/github/innerspacetrainings/prace.js/badge?s=ae50225ee71c7357c4a6f7a48998b11f34683662)](https://www.codefactor.io/repository/github/innerspacetrainings/prace.js)
13-
[![CircleCI](https://circleci.com/gh/innerspacetrainings/Prace.js.svg?style=svg&circle-token=b65ff8f34c4b5bfd19e6a3ab17b3ece352e25b73)](https://circleci.com/gh/innerspacetrainings/Prace.js)
13+
14+
![Continuous testing](https://github.com/innerspacetrainings/Prace.js/workflows/Continuous%20testing/badge.svg?event=push)
1415

1516
# Repository configuration
1617

build/index.js

+8,438-11,206
Large diffs are not rendered by default.

build/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/licenses.txt

+101-597
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)