2023-12-19 22:50:23 -05:00
|
|
|
name: Build
|
|
|
|
run-name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build NPM Project
|
|
|
|
runs-on: ubuntu-latest
|
2023-12-19 23:35:05 -05:00
|
|
|
container:
|
|
|
|
image: node
|
|
|
|
volumes:
|
|
|
|
- '/mnt/swarm/gitea/runner/cache:/cache'
|
2023-12-19 22:50:23 -05:00
|
|
|
steps:
|
|
|
|
- name: Clone Repository
|
|
|
|
uses: ztimson/actions/clone@develop
|
|
|
|
|
2023-12-19 23:58:05 -05:00
|
|
|
- name: Restore node_modules
|
|
|
|
uses: ztimson/actions/cache/restore@develop
|
|
|
|
with:
|
|
|
|
key: node_modules
|
|
|
|
|
2023-12-19 22:50:23 -05:00
|
|
|
- name: Install Dependencies
|
|
|
|
run: npm i
|
|
|
|
|
|
|
|
- name: Build Project
|
|
|
|
run: npm run build
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: npm run test:coverage
|
|
|
|
|
2023-12-19 23:58:05 -05:00
|
|
|
- name: Cache node_modules
|
|
|
|
uses: ztimson/actions/cache@develop
|
|
|
|
with:
|
|
|
|
key: node_modules
|
|
|
|
pattern: node_modules
|
|
|
|
|
2023-12-19 23:20:07 -05:00
|
|
|
- name: Cache Artifacts
|
|
|
|
uses: ztimson/actions/cache@develop
|
|
|
|
with:
|
|
|
|
pattern: dist
|
|
|
|
tag:
|
|
|
|
name: Tag Version
|
|
|
|
needs: build
|
|
|
|
if: ${{github.ref_name}} == 'release'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: node
|
|
|
|
steps:
|
|
|
|
- name: Clone Repository
|
|
|
|
uses: ztimson/actions/clone@develop
|
|
|
|
|
|
|
|
- name: Get Version Number
|
|
|
|
run: echo "VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Tag Version
|
|
|
|
uses: ztimson/actions/tag@develop
|
|
|
|
with:
|
|
|
|
tag: ${{env.VERSION}}
|
|
|
|
|
|
|
|
publish:
|
2023-12-19 23:35:05 -05:00
|
|
|
name: Publish
|
2023-12-19 23:20:07 -05:00
|
|
|
needs: build
|
|
|
|
if: ${{github.ref_name}} == 'release'
|
|
|
|
runs-on: ubuntu-latest
|
2023-12-19 23:35:05 -05:00
|
|
|
container:
|
|
|
|
image: node
|
|
|
|
volumes:
|
|
|
|
- '/mnt/swarm/gitea/runner/cache:/cache'
|
2023-12-19 23:20:07 -05:00
|
|
|
steps:
|
|
|
|
- name: Clone Repository
|
|
|
|
uses: ztimson/actions/clone@develop
|
|
|
|
|
|
|
|
- name: Restore Artifacts
|
|
|
|
uses: ztimson/actions/cache/restore@develop
|
|
|
|
|
|
|
|
- name: Upload to Registry
|
|
|
|
uses: ztimson/actions/npm/publish@develop
|
2024-01-05 15:57:45 -05:00
|
|
|
|
|
|
|
- name: Upload to NPM
|
|
|
|
uses: ztimson/actions/npm/publish@develop
|
|
|
|
with:
|
|
|
|
owner: ztimson
|
|
|
|
registry: https://registry.npmjs.org
|
|
|
|
token: ${{secrets.NPM_TOKEN}}
|