Skip to content

Commit

Permalink
tweak linux_arm config
Browse files Browse the repository at this point in the history
  • Loading branch information
jsumners-nr committed Feb 23, 2024
1 parent 5828c7c commit c8e3fce
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
- '**'
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
lint:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -114,6 +118,7 @@ jobs:
node: [ 16, 18, 20 ]
runs-on: ubuntu-latest
name: Linux / Node ${{ matrix.node }} arm64
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -128,7 +133,7 @@ jobs:
build-args: |
NODE_VERSION=${{ matrix.node }}
file: linux_arm.dockerfile
tags: linux_arm:latest
tags: linux_arm:node-${{ matrix.node }}
load: true
push: false
platforms: linux/arm64
Expand All @@ -137,9 +142,9 @@ jobs:
- name: Run test
uses: addnab/docker-run-action@v3
with:
image: linux_arm:latest
image: linux_arm:node-${{ matrix.node }}
options: --platform linux/arm64
run: |
npm install
npm install --verbose
npm run unit
npm run integration

0 comments on commit c8e3fce

Please sign in to comment.