-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (62 loc) · 1.96 KB
/
pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: pipeline
on: [ push, pull_request, workflow_dispatch ]
jobs:
test:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 21
- name: setup bun
uses: oven-sh/setup-bun@v1
- name: install dependencies
shell: bash
run: bun i
- name: build
shell: bash
run: bun run build
- name: test
shell: bash
run: bun run test
publish:
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 21
- name: setup bun
uses: oven-sh/setup-bun@v1
- name: create package version
shell: bash
if: github.ref != 'refs/heads/master'
run: |
current_version=$(cat package.json | jq -r '.version')
current_branch_raw=$(echo $GITHUB_REF | sed 's/refs\/heads\///' | sed 's/refs\/tags\///')
current_branch=$(echo $current_branch_raw | sed 's/\//-/g')
current_commit=$(echo $GITHUB_SHA | cut -c1-8)
project_version="${current_version}-${current_branch}.${current_commit}"
echo $(jq ".version = \"$project_version\"" package.json) > package.json
- name: echo package version
shell: bash
run: echo $(cat package.json | jq -r '.version')
- name: setup .npmrc
shell: bash
env:
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
run: |
echo "//npm.pkg.github.com/:_authToken=$NPM_TOKEN" >> ~/.npmrc
echo "@vichava:registry=https://npm.pkg.github.com/" >> ~/.npmrc
- name: install dependencies
shell: bash
run: bun i
- name: publish
shell: bash
run: ./publish.sh