mirror of
https://github.com/0x5eal/semver-luau.git
synced 2024-12-13 00:00:35 +00:00
71 lines
1.4 KiB
YAML
71 lines
1.4 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
fmt:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install tooling
|
|
uses: CompeyDev/setup-rokit@v0.1.2
|
|
with:
|
|
cache: true
|
|
|
|
- name: Check formatting
|
|
run: lune run fmt -- --check
|
|
|
|
typecheck:
|
|
needs: ["fmt"]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install tooling
|
|
uses: CompeyDev/setup-rokit@v0.1.2
|
|
with:
|
|
cache: true
|
|
|
|
- name: Install pesde
|
|
uses: ./.github/workflows/pesde.yml
|
|
with:
|
|
pesde-token: ${{ secrets.PESDE_TOKEN }}
|
|
|
|
- name: Install dependencies
|
|
run: pesde install
|
|
|
|
- name: Typecheck
|
|
run: lune run typecheck
|
|
|
|
test:
|
|
needs: ["typecheck"]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install tooling
|
|
uses: CompeyDev/setup-rokit@v0.1.2
|
|
with:
|
|
cache: true
|
|
|
|
- name: Install pesde
|
|
uses: ./.github/workflows/pesde.yml
|
|
with:
|
|
pesde-token: ${{ secrets.PESDE_TOKEN }}
|
|
|
|
- name: Install dependencies
|
|
run: pesde install
|
|
|
|
- name: Run tests
|
|
run: lune run tests
|