Skip to content

Commit d7398bf

Browse files
committed
Enhance GitHub Actions workflow by adding Node.js setup and build steps
- Introduced a step to set up Node.js version 20, ensuring compatibility with project dependencies. - Added a build step to compile the project after installing dependencies, streamlining the workflow process.
1 parent bd967c1 commit d7398bf

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/gbf_vector.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,17 @@ jobs:
1515
- name: Checkout Repository
1616
uses: actions/checkout@v4
1717

18+
- name: Set up Node.js 20
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: '20.x'
22+
1823
- name: Install dependencies
1924
run: npm install
2025

26+
- name: Build Project
27+
run: npm run build
28+
2129
- uses: ./
2230
with:
2331
single-action: vector_action

0 commit comments

Comments
 (0)