Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit ce3414e

Browse files
TEST Github actions
1 parent 13b8230 commit ce3414e

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node-version: [latest]
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: Setup pnpm
18+
uses: pnpm/[email protected]
19+
with:
20+
version: latest
21+
- name: Use Node.js ${{ matrix.node-version }}
22+
uses: actions/setup-node@v3
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
cache: 'pnpm'
26+
- name: Installing dependencies
27+
run: pnpm install
28+
- name: Building
29+
run: pnpm run build

0 commit comments

Comments
 (0)