Fix names on workflow files

This commit is contained in:
Ukendio 2025-01-15 13:10:05 +01:00
parent bacf056851
commit d85a8914d9
5 changed files with 182 additions and 182 deletions

View file

@ -1,4 +1,4 @@
name: Analysis name: analysis
on: [push, pull_request, workflow_dispatch] on: [push, pull_request, workflow_dispatch]

View file

@ -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

View file

@ -1,8 +1,8 @@
name: Publish to NPM name: publish-npm
on: on:
push: push:
branches: main branches: [main]
jobs: jobs:
publish: publish:

View file

@ -1,4 +1,4 @@
name: Release name: release
on: on:
push: push:

View file

@ -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