Skip to content

Commit e45cf64

Browse files
authored
Create action.yml
1 parent 5779018 commit e45cf64

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/actions/setup/action.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Setup project
2+
description: Sets up the repo code, Node.js, and npm dependencies
3+
4+
runs:
5+
using: composite
6+
steps:
7+
- name: Set up Node.js
8+
uses: actions/setup-node@v2
9+
with:
10+
node-version: '16.x'
11+
cache: npm
12+
registry-url: https://registry.npmjs.org
13+
- name: Install npm dependencies
14+
run: npm ci
15+
shell: bash

0 commit comments

Comments
 (0)