Skip to content

initial commit

initial commit #1

Workflow file for this run

name: Events Demo 1

Check failure on line 1 in .github/workflows/demo1.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/demo1.yml

Invalid workflow file

`...` is not a valid event name
on: ...
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Output event data
run: echo "${{ toJSON(github.event) }}"
- name: Get code
uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Test code
run: npm run test
- name: Build code
run: npm run build
- name: Deploy project
run: echo "Deploying..."