Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
adimpdl authored Jul 3, 2024
1 parent d7f45ac commit 09a56af
Showing 1 changed file with 59 additions and 5 deletions.
64 changes: 59 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,64 @@
name: test
name: Continuous Integration

on: push
on:
pull_request:
push:
branches:
- main
- releases/v1

permissions:
contents: read

jobs:
bloxberg-certification:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest

steps:
- name: Bloxberg certifier
uses: bloxberg-org/[email protected]
- name: Checkout
id: checkout
uses: actions/checkout@v4

- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm

- name: Install Dependencies
id: npm-ci
run: npm ci

- name: Check Format
id: npm-format-check
run: npm run format:check

- name: Lint
id: npm-lint
run: npm run lint

- name: Test
id: npm-ci-test
run: npm run ci-test

test-action:
name: GitHub Actions Test
runs-on: ubuntu-latest

steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4

- name: Test Local Action
id: test-action
uses: ./
with:
authorName: Max Planck Digital Library
researchTitle: Bloxberg GitHub action

- name: Print Output
id: output
run: echo -e "\nYour git branch has been successfully certified by bloxberg. To verify it you can copy paste the following into a json file and verify it on certify.bloxberg.org:\n\n##########\n" && echo "${{ steps.test-action.outputs.certificateVerification }}" && echo -e "\n##########"

0 comments on commit 09a56af

Please sign in to comment.