Skip to content

Commit

Permalink
Merge pull request #5 from lifeomic/make-public
Browse files Browse the repository at this point in the history
fix: make package public
  • Loading branch information
swain authored Oct 19, 2021
2 parents c810f3f + 5ce61cc commit ea75ee6
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 1,106 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: PR Branch Build and Test

on: pull_request

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Lint
run: |
yarn
yarn lint
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Lint
run: |
yarn
yarn lint
- name: Publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{secrets.LIFEOMIC_NPM_TOKEN}}
run: |
npx semantic-release
41 changes: 0 additions & 41 deletions Jenkinsfile

This file was deleted.

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,19 @@
"repository": {},
"author": "Development <[email protected]>",
"license": "UNLICENSED",
"publishConfig": {
"access": "public"
},
"files": [
"tsconfig.json"
],
"scripts": {
"lint": "eslint . -f codeframe"
},
"devDependencies": {
"@lifeomic/dev-tools": "^9.0.1",
"@lifeomic/eslint-config-standards": "^1.2.0",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint": "^7.32.0",
"semantic-release": "^17.4.4"
},
"resolutions": {
"@semantic-release/npm": "7.0.x"
}
}
Loading

0 comments on commit ea75ee6

Please sign in to comment.