Skip to content

Commit 3dcec13

Browse files
authored
build: release beta
2 parents 77f3350 + 3f3bf48 commit 3dcec13

18 files changed

+1983
-357
lines changed

.github/workflows/ci.yml

+22-20
Original file line numberDiff line numberDiff line change
@@ -29,26 +29,26 @@ jobs:
2929
run: npm ci
3030
- name: CI Node Engine Check
3131
run: npm run ci:checkNodeEngine
32-
# check-lint:
33-
# name: Lint
34-
# timeout-minutes: 15
35-
# runs-on: ubuntu-18.04
36-
# steps:
37-
# - uses: actions/checkout@v2
38-
# - name: Use Node.js ${{ env.NODE_VERSION }}
39-
# uses: actions/setup-node@v1
40-
# with:
41-
# node-version: ${{ env.node-version }}
42-
# - name: Cache Node.js modules
43-
# uses: actions/cache@v2
44-
# with:
45-
# path: ~/.npm
46-
# key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }}
47-
# restore-keys: |
48-
# ${{ runner.os }}-node-${{ env.NODE_VERSION }}-
49-
# - name: Install dependencies
50-
# run: npm ci
51-
# - run: npm run lint
32+
check-lint:
33+
name: Lint
34+
timeout-minutes: 15
35+
runs-on: ubuntu-18.04
36+
steps:
37+
- uses: actions/checkout@v2
38+
- name: Use Node.js ${{ env.NODE_VERSION }}
39+
uses: actions/setup-node@v1
40+
with:
41+
node-version: ${{ env.node-version }}
42+
- name: Cache Node.js modules
43+
uses: actions/cache@v2
44+
with:
45+
path: ~/.npm
46+
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }}
47+
restore-keys: |
48+
${{ runner.os }}-node-${{ env.NODE_VERSION }}-
49+
- name: Install dependencies
50+
run: npm ci
51+
- run: npm run lint
5252
check-circular:
5353
name: Circular Dependencies
5454
timeout-minutes: 5
@@ -147,6 +147,8 @@ jobs:
147147
- name: Install dependencies (Node >= 10)
148148
run: npm ci
149149
if: ${{ steps.node.outputs.node_major >= 10 }}
150+
- name: Tests
151+
run: npm test
150152
- name: Test bundles
151153
run: ./scripts/before_script.sh
152154
env:

changelogs/CHANGELOG_alpha.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# [4.1.0-alpha.3](https://github.com/ParsePlatform/parse-dashboard/compare/4.1.0-alpha.2...4.1.0-alpha.3) (2022-03-30)
2+
3+
4+
### Bug Fixes
5+
6+
* security upgrade js-beautify from 1.14.0 to 1.14.1 ([#2077](https://github.com/ParsePlatform/parse-dashboard/issues/2077)) ([74aa7d0](https://github.com/ParsePlatform/parse-dashboard/commit/74aa7d03bebf925f90b92be76925a522c44e1031))
7+
8+
# [4.1.0-alpha.2](https://github.com/ParsePlatform/parse-dashboard/compare/4.1.0-alpha.1...4.1.0-alpha.2) (2022-03-24)
9+
10+
11+
### Bug Fixes
12+
13+
* security vulnerability bump minimist from 1.2.5 to 1.2.6 ([#2070](https://github.com/ParsePlatform/parse-dashboard/issues/2070)) ([9730379](https://github.com/ParsePlatform/parse-dashboard/commit/973037980aab05680072eba8a313b0f6280e12b7))
14+
115
# [4.1.0-alpha.1](https://github.com/ParsePlatform/parse-dashboard/compare/4.0.1...4.1.0-alpha.1) (2022-03-23)
216

317

jsconfig.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"typeAcquisition": {
3+
"include": [
4+
"jest"
5+
]
6+
},
7+
"exclude": ["node_modules"]
8+
}

0 commit comments

Comments
 (0)