We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5779018 commit e45cf64Copy full SHA for e45cf64
.github/actions/setup/action.yml
@@ -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