auction/.github/workflows/github-actions-demo.yml
2024-01-07 16:14:44 +08:00

20 lines
No EOL
535 B
YAML

name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
init:
strategy:
matrix:
node-version: [ 17.x ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Starting NodeJs ${{ matrix.node-version}}
uses: actions/setup-node@v3
with:
path: frontend/casino
node-version: ${{ matrix.node-version }}
- name: install modules
run: yarn
- name: build project
run: yarn build