Skip to content

Bump docker/setup-buildx-action from 3.3.0 to 3.4.0 (#835) #540

Bump docker/setup-buildx-action from 3.3.0 to 3.4.0 (#835)

Bump docker/setup-buildx-action from 3.3.0 to 3.4.0 (#835) #540

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@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Use Node.js LTS (18.x)
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.x
- name: Install project dependencies
run: yarn install --immutable
- name: Run exercism/javascript-test-runner ci precheck (lint code)
run: bin/lint.sh
ci:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: ${{ matrix.node-version }}
- name: Install project dependencies
run: yarn install --immutable
- name: Build the test-runner (using Node ${{ matrix.node-version }})
run: bin/test.sh
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4fd812986e6c8c2a69e18311145f9371337f27d4
with:
install: true
- name: Build Docker image and store in cache
uses: docker/build-push-action@1a162644f9a7e87d8f4b053101d1d9a712edc18c
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