Skip to content

Bump docker/setup-buildx-action from 1 to 3 #325

Bump docker/setup-buildx-action from 1 to 3

Bump docker/setup-buildx-action from 1 to 3 #325

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: rendertron
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 15
- run: npm ci
- run: npm run lint
- run: npm run build
test-middleware:
name: Middleware tests
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: rendertron/middleware
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 15
- run: npm ci
- run: npm run test
- run: npm run build