2025-03-04 19:28:22 +01:00
|
|
|
on: [push, workflow_dispatch]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-element:
|
2025-03-04 19:30:40 +01:00
|
|
|
runs-on: ubuntu-latest
|
2025-03-04 19:28:22 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2025-03-04 20:20:54 +01:00
|
|
|
- name: Install dependencies
|
2025-03-04 20:21:54 +01:00
|
|
|
run: "apt update && apt install -y npm && npm install -g yarn"
|
2025-03-04 20:20:54 +01:00
|
|
|
|
2025-03-04 19:28:22 +01:00
|
|
|
- name: Run script
|
|
|
|
run: "echo 'hello world'"
|