mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
Fix names on workflow files
This commit is contained in:
parent
bacf056851
commit
d85a8914d9
5 changed files with 182 additions and 182 deletions
2
.github/workflows/analysis.yaml
vendored
2
.github/workflows/analysis.yaml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Analysis
|
||||
name: analysis
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
|
||||
|
|
2
.github/workflows/deploy-docs.yaml
vendored
2
.github/workflows/deploy-docs.yaml
vendored
|
@ -1,6 +1,6 @@
|
|||
# Sample workflow for building and deploying a VitePress site to GitHub Pages
|
||||
#
|
||||
name: Deploy VitePress site to Pages
|
||||
name: deploy-docs
|
||||
|
||||
on:
|
||||
# Runs on pushes targeting the `main` branch. Change this to `master` if you're
|
||||
|
|
4
.github/workflows/publish-npm.yml
vendored
4
.github/workflows/publish-npm.yml
vendored
|
@ -1,8 +1,8 @@
|
|||
name: Publish to NPM
|
||||
name: publish-npm
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: main
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
|
|
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Release
|
||||
name: release
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
6
.github/workflows/unit-testing.yaml
vendored
6
.github/workflows/unit-testing.yaml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Unit Testing
|
||||
name: unit-testing
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
|
||||
|
@ -15,8 +15,8 @@ jobs:
|
|||
- name: Install Luau
|
||||
uses: encodedvenom/install-luau@v4.3
|
||||
with:
|
||||
version: 'latest'
|
||||
verbose: 'true'
|
||||
version: "latest"
|
||||
verbose: "true"
|
||||
|
||||
- name: Run Unit Tests
|
||||
id: run_tests
|
||||
|
|
Loading…
Reference in a new issue