forked from CringeStudios/element-desktop
15 lines
333 B
YAML
15 lines
333 B
YAML
on: [push, workflow_dispatch]
|
|
|
|
jobs:
|
|
build-element:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
run: "apt update && apt install -y yarn && npm install -g yarn"
|
|
|
|
- name: Run script
|
|
run: "echo 'hello world'"
|