Skip to content

Bump docker/build-push-action from 6.18.0 to 7.1.0 (#989) #583

Bump docker/build-push-action from 6.18.0 to 7.1.0 (#989)

Bump docker/build-push-action from 6.18.0 to 7.1.0 (#989) #583

Workflow file for this run

# This workflow will do a clean install of node dependencies and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: javascript-test-runner / main
on:
push:
branches: [main]
jobs:
precheck:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- name: Use Node.js LTS
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
with:
node-version-file: .nvmrc
- name: Install project dependencies
run: |
corepack enable pnpm
corepack pnpm -v
corepack pnpm install --frozen-lockfile
- name: Run exercism/javascript-test-runner ci precheck (lint code)
run: bin/lint.sh
ci:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
with:
node-version: ${{ matrix.node-version }}
- name: Install project dependencies
run: |
corepack enable pnpm
corepack pnpm -v
corepack pnpm install --frozen-lockfile
- name: Build the test-runner (using Node ${{ matrix.node-version }})
run: bin/test.sh
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349
with:
install: true
- name: Build Docker image and store in cache
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
with:
context: .
push: false
load: true
tags: exercism/javascript-test-runner
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Run Tests in Docker
run: bin/run-tests-in-docker.sh