You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up job
|
|
uses: actions/checkout@v4
|
|
- name: Set up Terraform
|
|
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
|
|
with:
|
|
terraform_version: 1.9.8
|
|
terraform_wrapper: false
|
|
- name: Set up Bun
|
|
uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: latest
|
|
- name: Install dependencies
|
|
run: bun install
|
|
- name: Run tests
|
|
run: bun test
|
|
pretty:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0 # Needed to get tags
|
|
- uses: coder/coder/.github/actions/setup-tf@main
|
|
- uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: latest
|
|
- name: Setup
|
|
run: bun install
|
|
- name: Format
|
|
run: bun fmt:ci
|
|
- name: typos-action
|
|
uses: crate-ci/typos@v1.17.2
|
|
- name: Lint
|
|
run: bun lint
|
|
- name: Check version
|
|
shell: bash
|
|
run: |
|
|
# check for version changes
|
|
./update-version.sh
|
|
# Check if any changes were made in README.md files
|
|
if [[ -n "$(git status --porcelain -- '**/README.md')" ]]; then
|
|
echo "Version mismatch detected. Please run ./update-version.sh and commit the updated README.md files."
|
|
git diff -- '**/README.md'
|
|
exit 1
|
|
else
|
|
echo "No version mismatch detected. All versions are up to date."
|
|
fi
|