change actions
This commit is contained in:
parent
365252e53a
commit
aae8407731
1 changed files with 7 additions and 0 deletions
7
.github/workflows/github-actions-demo.yml
vendored
7
.github/workflows/github-actions-demo.yml
vendored
|
@ -9,11 +9,18 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
path: frontend/casino
|
||||||
- name: Starting NodeJs ${{ matrix.node-version}}
|
- name: Starting NodeJs ${{ matrix.node-version}}
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
|
path: frontend/casino
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- name: install modules
|
- name: install modules
|
||||||
|
with:
|
||||||
|
path: frontend/casino
|
||||||
run: yarn
|
run: yarn
|
||||||
- name: build project
|
- name: build project
|
||||||
|
with:
|
||||||
|
path: frontend/casino
|
||||||
run: yarn build
|
run: yarn build
|
Loading…
Reference in a new issue