Skip to content

[Snyk] Security upgrade eslint from 8.17.0 to 9.0.0 #26

[Snyk] Security upgrade eslint from 8.17.0 to 9.0.0

[Snyk] Security upgrade eslint from 8.17.0 to 9.0.0 #26

Workflow file for this run

name: Release
on:
push:
branches:
- 'master'
tags:
- '*'
pull_request:
branches:
- 'master'
jobs:
build:
name: Yarn build
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn lint
- name: Yarn build
run: yarn build
release:
name: Publish Release
runs-on: ubuntu-20.04
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn install
- name: Semantic Release
run: yarn semantic-release
docker:
name: Docker build & push
runs-on: ubuntu-20.04
needs: build
steps:
- uses: actions/checkout@v3
- uses: docker/metadata-action@v4
id: meta
with:
images: pixelfactory/playwright
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Docker build & push
uses: docker/build-push-action@v3
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}