Skip to content

fix filepath

fix filepath #2

Workflow file for this run

name: FwfEnumCheck
env:
AWS_REGION: eu-central-1
AWS_ROLE: FirewallFactoryGithubPipelineRole
AWS_ACCOUNT: 859220371210
permissions:
id-token: write
contents: read
concurrency: ci-${{ github.ref }}
on:
push:
branches:
- 4.2.3
# schedule:
# - cron: "* * * * *"
# #"0 10 * * 1"
jobs:
deploy_production_main:
name: Check Enums for ManagedRule Groups
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v3
- name: 📁 Install Taskfile
run: |
npm install -g @go-task/cli
- name: ☊ Use Node.js
uses: actions/setup-node@v1
with:
node-version: '18.x'
- name: 💾 Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: 🌐 Install ts-node and typescript globally
run: |
npm i -g typescript ts-node @types/node
npm link typescript
- name: 📦 Install Packages
run: |
npm install
- name: 🔑 Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1.7.0
env:
ACCOUNT_ID: ${{ env.AWS_ACCOUNT }}
with:
role-to-assume: arn:aws:iam::${{ env.ACCOUNT_ID }}:role/${{ env.AWS_ROLE }}
aws-region: ${{ env.AWS_REGION }}
role-session-name: GitHubActionsSession
mask-aws-account-id: false
- name: 🧪 Check Enums for ManagedRule Groups
run: |
ts-node ./lib/tools/enumcheck.ts