mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-15 16:12:35 +00:00
* feat: bump to use node20 runtime Signed-off-by: Rui Chen <rui@chenrui.dev> fix action refs for `actions/reusable-workflows` Signed-off-by: Rui Chen <rui@chenrui.dev> * docs: update changelog Signed-off-by: Rui Chen <rui@chenrui.dev> * workflows: update `actions/reusable-workflows` to use node20 Signed-off-by: Rui Chen <rui@chenrui.dev> * chore: update dist file * clean up PR for merge * add node version * update dist * switch changelog --------- Signed-off-by: Rui Chen <rui@chenrui.dev> Co-authored-by: Austin Valle <austinvalle@gmail.com>
22 lines
508 B
YAML
22 lines
508 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
|
|
with:
|
|
node-version: 20.x
|
|
node-caching: npm
|
|
|
|
test:
|
|
name: Test
|
|
uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@a8533f184b279cfc1b2dd6a96ed2f097ccf81189
|
|
with:
|
|
node-version: 20.x
|
|
node-caching: npm
|