Bump the npm_and_yarn group across 2 directories with 2 updates #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
branches: | |
- '**' | |
push: | |
branches: | |
- main | |
name: Worldpay RAFT commercetools connector - Release Pipeline | |
env: | |
name: Worldpay RAFT connector - Release Pipeline | |
NODE_OPTIONS: --max_old_space_size=8192 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
build-and-test: | |
name: Validate Job | |
runs-on: ubuntu-latest | |
environment: ${{ inputs.environment }} | |
strategy: | |
matrix: | |
node-version: [ 20.x ] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: build | |
uses: ./.github/actions/build-application | |
- name: Test | |
uses: ./.github/actions/test |