mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-25 01:20:04 +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]
|
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
|
# Sample workflow for building and deploying a VitePress site to GitHub Pages
|
||||||
#
|
#
|
||||||
name: Deploy VitePress site to Pages
|
name: deploy-docs
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# Runs on pushes targeting the `main` branch. Change this to `master` if you're
|
# 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:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: main
|
branches: [main]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
|
|
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Release
|
name: release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
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]
|
on: [push, pull_request, workflow_dispatch]
|
||||||
|
|
||||||
|
@ -15,8 +15,8 @@ jobs:
|
||||||
- name: Install Luau
|
- name: Install Luau
|
||||||
uses: encodedvenom/install-luau@v4.3
|
uses: encodedvenom/install-luau@v4.3
|
||||||
with:
|
with:
|
||||||
version: 'latest'
|
version: "latest"
|
||||||
verbose: 'true'
|
verbose: "true"
|
||||||
|
|
||||||
- name: Run Unit Tests
|
- name: Run Unit Tests
|
||||||
id: run_tests
|
id: run_tests
|
||||||
|
|
Loading…
Reference in a new issue