mirror of
https://github.com/gchq/CyberChef.git
synced 2025-06-14 10:14:53 -04:00

- The redhat actions no longer provide anything not provided by the official docker action - The redhat action creates OCI images that are not following best practices from the OCI specification
55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
name: "Pull Requests"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
types: [synchronize, opened, reopened]
|
|
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set node version
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18.x'
|
|
|
|
- name: Install
|
|
run: |
|
|
export DETECT_CHROMEDRIVER_VERSION=true
|
|
npm install
|
|
npm run setheapsize
|
|
|
|
- name: Lint
|
|
run: npx grunt lint
|
|
|
|
- name: Unit Tests
|
|
run: |
|
|
npm test
|
|
npm run testnodeconsumer
|
|
|
|
- name: Production Build
|
|
if: success()
|
|
run: npx grunt prod
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Production Image Build
|
|
if: success()
|
|
id: build-image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
# Not being uploaded to any registry, use a simple name to allow Buildah to build correctly.
|
|
image: cyberchef
|
|
platforms: linux/amd64
|
|
- name: UI Tests
|
|
if: success()
|
|
run: |
|
|
sudo apt-get install xvfb
|
|
xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui
|