Skip to content

Commit 49ac7b5

Browse files
feat: Upgrade to parse-server 7.2.0 (#470)
1 parent bb6218d commit 49ac7b5

File tree

4 files changed

+4275
-1703
lines changed

4 files changed

+4275
-1703
lines changed

.github/workflows/ci.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,18 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
node-version: [14, 16, 18]
15+
node-version: [18, 20, 22]
1616
fail-fast: false
1717
name: Test Node ${{ matrix.node-version }}
1818
steps:
1919
- name: Fix usage of insecure GitHub protocol
2020
run: sudo git config --system url."https://github".insteadOf "git://github"
21-
- name: Fix git protocol for Node 14
22-
if: ${{ startsWith(matrix.node-version, '14') }}
23-
run: sudo git config --system url."https://github".insteadOf "ssh://git@github"
2421
- uses: actions/checkout@v3
2522
- name: Use Node.js ${{ matrix.node-version }}
2623
uses: actions/setup-node@v3
2724
with:
2825
node-version: ${{ matrix.node-version }}
26+
cache: 'npm'
2927
- name: Install Dependancies
3028
run: npm install
3129
- name: Check Linting

0 commit comments

Comments
 (0)