Skip to content

Commit

Permalink
[POC] CI testing workflow for Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
helene-nguyen committed Apr 18, 2024
1 parent 2d4a446 commit b3ce01a
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: "CI Test"

on:
push:
branches: [master]
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
paths-ignore:
- '**/*.md'
- '**/*.txt'
schedule:
- cron: "21 11 * * 0"

jobs:
frontend:
name: Frontend
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: jirutka/setup-alpine@v1
with:
branch: v3.18
packages: >
nodejs npm git tini gcc g++ make musl-dev cargo python3 py3-pip python3-dev postfix postfix-pcre
- name: Setup Node.js & python
run: |
npm install -g node-gyp yarn
python -V
shell: alpine.sh --root {0}

- name: Install dependencies into Alpine and run test
run: |
cd opencti-platform/opencti-front
yarn install
yarn lint
yarn check-ts
yarn test
yarn test:e2e
cd ../opencti-graphql
yarn install
yarn lint
yarn check-ts
yarn test:dev
shell: alpine.sh {0}

0 comments on commit b3ce01a

Please sign in to comment.