Skip to content

Fix intrinsic parsing issues #1278

Fix intrinsic parsing issues

Fix intrinsic parsing issues #1278

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [opened, edited, reopened, synchronize]
branches: [ main ]
permissions:
contents: read
jobs:
get-configs:
uses: ./.github/workflows/configs.yml
pr-build-test-nodejs:
needs: [ get-configs ]
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v5
- name: Setup Node.js ${{ needs.get-configs.outputs.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ needs.get-configs.outputs.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Code Quality
run: npm run lint && npm run check:duplicates
- name: Test
run: npm run test
pr-build-test-go:
needs: [ get-configs ]
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- name: Setup Go ${{ needs.get-configs.outputs.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ needs.get-configs.outputs.go-version }}
cache: true
- name: Build
shell: bash
run: GOPROXY=direct go build -C ./cfn-init ./...
- name: Test
shell: bash
run: GOPROXY=direct go test -C ./cfn-init -v -cover ./...