1
0
Fork 0
waifurudor.de/.github/workflows/test.yml
Sam Therapy deca58fb4c
Some checks failed
build (current)
Please work
2023-03-30 14:57:18 +02:00

24 lines
503 B
YAML

name: pnpm Example Workflow
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [current]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build