Skip to content

ci(action): bump docker/setup-buildx-action from 2.5.0 to 2.8.0 #2640

ci(action): bump docker/setup-buildx-action from 2.5.0 to 2.8.0

ci(action): bump docker/setup-buildx-action from 2.5.0 to 2.8.0 #2640

Workflow file for this run

name: test
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [14, 16, 18]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
id: cache
uses: actions/[email protected]
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Cache hit
run: echo ${{ steps.cache.outputs.cache-hit }}
- name: Install dependencies
run: npm ci
env:
SKIP_BUILD: true
- name: Lint
run: npm run lint -- --no-fix
- name: Build
run: npm run build