Skip to content

chore: bump docker/setup-buildx-action from 2 to 3 #321

chore: bump docker/setup-buildx-action from 2 to 3

chore: bump docker/setup-buildx-action from 2 to 3 #321

Workflow file for this run

---
name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
name: Test and lint
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: npm install
run: npm i
- name: Unittesting
run: npm run test
- name: Linting
run: npm run lint