Github Actions untuk PNPM Komplit

Posting Komentar

Buat file .github/workflows/run.yml yang berisi seperti ini:

name: run
on:
schedule:
- cron: 0 0/4 * * *
push:
branches:
- master
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install

- run: node app.mjs

- uses: stefanzweifel/git-auto-commit-action@v4

Nanti tinggal edit yang bagian node app.mjs.

Terbaru Lebih lama

Related Posts

Posting Komentar