Skip to content

Commit

Permalink
ci: Clean-up (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza authored Oct 26, 2023
1 parent 0e9c238 commit ab3bf77
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@ 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
with:
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 }}
Expand Down

0 comments on commit ab3bf77

Please sign in to comment.