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

20 lines
518 B
YAML

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