chore(deps): update docker/build-push-action action to v6 #2630
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Checker | |
on: | |
pull_request: | |
permissions: write-all | |
jobs: | |
start: | |
name: Test [Dev Mode] | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache pnpm modules | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-pnpm-modules | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}- | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
run_install: false | |
- name: Install Dependencies | |
run: | | |
pnpm i --no-optional | |
- name: Start MongoDB | |
uses: supercharge/mongodb-github-action@v1.10.0 | |
with: | |
mongodb-version: 4.4 | |
- name: Start Redis | |
uses: supercharge/redis-github-action@1.7.0 | |
with: | |
redis-version: 6 | |
- name: Start project & test | |
run: | | |
nohup pnpm run dev > /dev/null 2>&1 & | |
pid=$! | |
sleep 60 # wait for server to start | |
bash ./scripts/workflow/test-request.sh pid=$pid dev | |
build: | |
name: Build & Upload [Bundle Mode] | |
needs: start | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache pnpm modules | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-pnpm-modules | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}- | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
run_install: false | |
- name: Install Dependencies | |
run: | | |
pnpm i --no-optional | |
- name: Build project | |
run: | | |
npm run build | |
npm run bundle | |
cp ecosystem.bundle.config.js out/ecosystem.bundle.config.js | |
zip -r mog-core-bundle-${{ runner.os }}.zip out/ | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
path: ./mog-core-bundle-${{ runner.os }}.zip | |
name: PR-${{ github.event.pull_request.number }}-mog-core-bundle-${{ runner.os }}-${{ matrix.node-version }}.zip | |
test: | |
name: Test [Bundle Mode] | |
needs: build | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
os: ['ubuntu-latest'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Download Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: PR-${{ github.event.pull_request.number }}-mog-core-bundle-${{ runner.os }}-${{ matrix.node-version }}.zip | |
path: ./build | |
- name: Start MongoDB | |
uses: supercharge/mongodb-github-action@v1.10.0 | |
with: | |
mongodb-version: 4.4 | |
- name: Start Redis | |
uses: supercharge/redis-github-action@1.7.0 | |
with: | |
redis-version: 6 | |
- name: Test Bundle Server | |
id: test_bundle | |
# continue-on-error: true | |
run: | | |
unzip ./build/mog-core-bundle-Linux.zip -d ./ | |
cd ./out | |
# wget https://raw.githubusercontent.com/mogland/core/main/scripts/workflow/test-server.sh -O test-server.sh | |
wget https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/scripts/workflow/test-server.sh -O test-server.sh | |
wget https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/scripts/workflow/test-request.sh -O test-request.sh | |
bash test-server.sh |