Skip to content

Commit

Permalink
fix(github): added workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanGerbeth committed Dec 19, 2021
1 parent 9ea3e7f commit d8da381
Show file tree
Hide file tree
Showing 2 changed files with 134 additions and 11 deletions.
97 changes: 97 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
name: Main
on:
push:
branches:
- main

jobs:
install:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Install
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [16]

steps:
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v2
- name: cache node_modules
uses: actions/cache@v2
id: cache
with:
path: |
node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: Test
run: npm run test

build:
name: Build
needs: install
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [16]

steps:
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v2
- name: cache node_modules
uses: actions/cache@v2
id: cache
with:
path: |
node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}
- name: Build
run: |
npm run build
- name: Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: artifact
path: build

semantic-version:
name: Semantic Release
needs: build
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [16]

steps:
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v2
- name: Download Artifact
uses: actions/download-artifact@master
with:
name: artifact
path: build
- name: Versioning
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npx -p pinst -p semantic-release -p @semantic-release/git -p @semantic-release/changelog -p @semantic-release/exec -p semantic-release-github semantic-release --provider=github --debug=true
48 changes: 37 additions & 11 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,16 +1,42 @@
{
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"branches": [
{
"name": "main",
"channel": "latest",
"prerelease": false
},
{
"path": "@semantic-release/git",
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
"name": "beta",
"prerelease": true
}
],
"publish": ["@semantic-release/npm", "@semantic-release/github"]
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# Project Changelog"
}
],
[
"@semantic-release/npm"
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"CHANGELOG_PROJECT.md",
"package.json",
"package-lock.json",
"npm-shrinkwrap.json"
]
}
],
[
"@semantic-release/github"
]
]
}

0 comments on commit d8da381

Please sign in to comment.