File tree Expand file tree Collapse file tree 3 files changed +16
-1244
lines changed Expand file tree Collapse file tree 3 files changed +16
-1244
lines changed Original file line number Diff line number Diff line change 77 platform : [ubuntu-latest]
88 runs-on : ${{ matrix.platform }}
99 steps :
10- - name : Checkout code
11- uses : actions/checkout@v3
12- - uses : actions/setup-node@v3
13- with :
14- node-version : ' 18 '
15- - uses : actions/cache@v3
16- with :
17- path : ~/.npm
18- key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
19- restore-keys : |
20- ${{ runner.os }}-node-
21- - run : npm ci
22- - name : build
23- run : npm run build
10+ - name : Checkout code
11+ uses : actions/checkout@v3
12+ - name : Setup Node
13+ uses : actions/setup-node@v3
14+ with :
15+ node-version : ' 18 '
16+ - name : Setup Fastly CLI
17+ uses : fastly/compute-actions/setup@v5
18+ - name : Install Dependencies
19+ run : npm install
20+ - name : Build Compute Package
21+ uses : fastly/compute-actions/build@v5
22+ with :
23+ verbose : true
You can’t perform that action at this time.
0 commit comments