This commit is contained in:
parent
78e980df41
commit
9ee8e25090
@ -4,5 +4,14 @@ on: [push]
|
|||||||
jobs:
|
jobs:
|
||||||
Build-Site:
|
Build-Site:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [18.x]
|
||||||
steps:
|
steps:
|
||||||
- run: echo "Starting build job"
|
- run: echo "Starting build job"
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
- run: npm run build
|
||||||
|
Loading…
Reference in New Issue
Block a user