From 506f73134a995ac4a318130e7162eb70c66eaec4 Mon Sep 17 00:00:00 2001 From: teaglebuilt Date: Sat, 9 Sep 2023 15:36:18 -0400 Subject: [PATCH] comment out stage --- .github/workflows/main.yaml | 34 +++++++++++++++++++++------------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 9599b87..0b7bf0c 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -22,7 +22,9 @@ jobs: node-version: '16.x' registry-url: 'https://registry.npmjs.org' - run: npm ci + working-directory: functions - run: npm run lint + working-directory: functions integration-tests: runs-on: ubuntu-latest @@ -34,17 +36,23 @@ jobs: node-version: '16.x' registry-url: 'https://registry.npmjs.org' - run: npm ci + working-directory: functions - run: npm run test:integration - publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - # Setup .npmrc file to publish to npm - - uses: actions/setup-node@v3 - with: - node-version: '16.x' - registry-url: 'https://registry.npmjs.org' - - run: npm ci - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + working-directory: functions + + # publish: + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v3 + # # Setup .npmrc file to publish to npm + # - uses: actions/setup-node@v3 + # with: + # node-version: '16.x' + # registry-url: 'https://registry.npmjs.org' + # - run: npm ci + # working-directory: functions + + # - run: npm publish + # working-directory: functions + # env: + # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}