auction/.github/workflows/github-actions-demo.yml

21 lines
518 B
YAML
Raw Permalink Normal View History

2024-01-07 08:02:05 +00:00
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
2024-01-07 08:11:33 +00:00
init:
strategy:
matrix:
2024-01-07 08:18:43 +00:00
node-version: [ 18.x ]
2024-01-07 08:02:05 +00:00
runs-on: ubuntu-latest
steps:
2024-01-07 08:11:33 +00:00
- uses: actions/checkout@v3
- name: Starting NodeJs ${{ matrix.node-version}}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
2024-01-07 08:17:24 +00:00
- name: build
run: |
yarn
yarn build
working-directory: frontend/casino