From b64a471d6495c1568870863f7c0dc9e4f2884417 Mon Sep 17 00:00:00 2001 From: Dragos Daniel Boia <19934057+DragosDanielBoia@users.noreply.github.com> Date: Wed, 19 Oct 2022 10:36:27 -0700 Subject: [PATCH 1/2] Add Platformcontext config for microsoft-github-policy-service --- policies/platformcontext.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 policies/platformcontext.yml diff --git a/policies/platformcontext.yml b/policies/platformcontext.yml new file mode 100644 index 0000000..2a22ae6 --- /dev/null +++ b/policies/platformcontext.yml @@ -0,0 +1,10 @@ +name: platform_context +description: The context for GitOps platform, this will drive GitOps specific policies +owner: +resource: repository +where: +configuration: + platformContext: + active: true +onFailure: +onSuccess: From cdc99ab58787e8ca91748750ee983630c7de9894 Mon Sep 17 00:00:00 2001 From: Ascalad <141642611+Ascalad@users.noreply.github.com> Date: Wed, 23 Apr 2025 01:37:12 +0330 Subject: [PATCH 2/2] Create node.js.yml/yalan2ny Pull request --- .github/workflows/node.js.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/node.js.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 0000000..b66310f --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,31 @@ +tab# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Node.js CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: npm ci + - run: npm run build --if-present + - run: npm test