CyberChef/.github/workflows/pull_requests.yml

55 lines
1.2 KiB
YAML
Raw Normal View History

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