mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-16 08:32:34 +00:00
Reference: https://github.com/actions/reusable-workflows Reference:a8533f184b/.github/workflows/basic-validation.ymlReference:a8533f184b/.github/workflows/check-dist.ymlSimplify the project's CI by using the recently developed actions/reusable-workflows for testing and dist/ compilation checking. Recompiled `dist/` via `npm run build`
15 lines
389 B
YAML
15 lines
389 B
YAML
name: 'Continuous Integration'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
check-dist:
|
|
name: Check dist/ directory
|
|
uses: actions/reusable-workflows/.github/workflows/check-dist.yml@a8533f184b279cfc1b2dd6a96ed2f097ccf81189
|
|
test:
|
|
name: Test
|
|
uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@a8533f184b279cfc1b2dd6a96ed2f097ccf81189
|