diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f61bd9cb0..84f575ff1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - version: ['5.0.0', '6.0.0'] + version: ['5.6.0', '6.3.1'] steps: - name: Checkout parse-server ${{ matrix.version }} uses: actions/checkout@v2 @@ -22,16 +22,16 @@ jobs: repository: parse-community/parse-server ref: ${{ matrix.version }} path: parse-server - - name: Run CI workflow of Parse Server - uses: actions/github-script@v5 - with: - script: | - const fs = require('fs'); - const yaml = require('js-yaml'); - const path = './parse-server/.github/workflows/ci.yml'; - const ciConfig = yaml.load(fs.readFileSync(path, 'utf8')); - console.log(ciConfig); - return ciConfig; + # - name: Run CI workflow of Parse Server + # uses: actions/github-script@v6 + # with: + # script: | + # const fs = require('fs'); + # const yaml = require('js-yaml'); + # const path = './parse-server/.github/workflows/ci.yml'; + # const ciConfig = yaml.load(fs.readFileSync(path, 'utf8')); + # console.log(ciConfig); + # return ciConfig; concurrency: group: ${{ github.workflow }}-${{ github.ref }}