Skip to content

ci(action): bump docker/setup-buildx-action from 3.11.1 to 3.12.0 #3465

ci(action): bump docker/setup-buildx-action from 3.11.1 to 3.12.0

ci(action): bump docker/setup-buildx-action from 3.11.1 to 3.12.0 #3465

Workflow file for this run

name: test
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16, 20]
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.4.0
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
env:
SKIP_BUILD: true
- name: Lint
run: npm run lint -- --no-fix
- name: Build
run: npm run build