2021-02-10 19:37:46 +01:00
|
|
|
name: "Pull Requests"
|
2021-02-01 17:34:12 +01:00
|
|
|
|
|
|
|
on:
|
2022-03-25 16:24:21 +01:00
|
|
|
workflow_dispatch:
|
2021-02-01 17:34:12 +01:00
|
|
|
pull_request:
|
|
|
|
types: [synchronize, opened, reopened]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
main:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-06 14:58:01 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-02-01 17:34:12 +01:00
|
|
|
|
|
|
|
- name: Set node version
|
2022-10-06 14:58:01 +02:00
|
|
|
uses: actions/setup-node@v3
|
2021-02-01 17:34:12 +01:00
|
|
|
with:
|
2022-09-09 22:22:55 +02:00
|
|
|
node-version: '18.x'
|
2021-02-01 17:34:12 +01:00
|
|
|
|
|
|
|
- name: Install
|
|
|
|
run: |
|
|
|
|
npm install
|
2021-02-12 14:51:51 +01:00
|
|
|
npm run setheapsize
|
2021-02-01 17:34:12 +01:00
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: npx grunt lint
|
|
|
|
|
|
|
|
- name: Unit Tests
|
|
|
|
run: |
|
|
|
|
npm test
|
2022-03-28 16:42:11 +02:00
|
|
|
npm run testnodeconsumer
|
2021-02-01 17:34:12 +01:00
|
|
|
|
|
|
|
- name: Production Build
|
|
|
|
if: success()
|
|
|
|
run: npx grunt prod
|
|
|
|
|
2024-01-30 16:18:45 +01:00
|
|
|
- name: Production Image Build
|
|
|
|
if: success()
|
|
|
|
id: build-image
|
|
|
|
uses: redhat-actions/buildah-build@v2
|
|
|
|
with:
|
2024-02-12 11:41:45 +01:00
|
|
|
# Not being uploaded to any registry, use a simple name to allow Buildah to build correctly.
|
|
|
|
image: cyberchef
|
2024-02-11 14:38:43 +01:00
|
|
|
containerfiles: ./Dockerfile
|
2024-02-06 11:26:33 +01:00
|
|
|
platforms: linux/amd64
|
2024-01-30 16:18:45 +01:00
|
|
|
oci: true
|
2024-02-08 11:28:14 +01:00
|
|
|
# Webpack seems to use a lot of open files, increase the max open file limit to accomodate.
|
|
|
|
extra-args: |
|
|
|
|
--ulimit nofile=10000
|
2024-01-30 16:18:45 +01:00
|
|
|
|
2023-03-09 15:01:21 +01:00
|
|
|
- name: UI Tests
|
|
|
|
if: success()
|
|
|
|
run: |
|
|
|
|
sudo apt-get install xvfb
|
|
|
|
xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui
|