Skip to content

Commit 81b51b6

Browse files
committed
ci: rebase CCI to GHA migration
1 parent 5bca2a5 commit 81b51b6

File tree

3 files changed

+91
-0
lines changed

3 files changed

+91
-0
lines changed

.github/workflows/ci-cd.yml

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
name: CI/CD
2+
3+
on:
4+
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
5+
pull_request: # Runs whenever a pull request is created or updated
6+
push: # Runs whenever a commit is pushed to the repository
7+
branches: [master, develop, hotfix/*]
8+
9+
concurrency:
10+
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
11+
cancel-in-progress: true
12+
13+
permissions:
14+
contents: write # publish a GitHub release
15+
pages: write # deploy to GitHub Pages
16+
issues: write # comment on released issues
17+
pull-requests: write # comment on released pull requests
18+
19+
jobs:
20+
ci-cd:
21+
runs-on: ubuntu-latest
22+
env:
23+
TRIGGER_DEPLOY: ${{ startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/heads/hotfix') || startsWith(github.ref, 'refs/heads/develop') || startsWith(github.ref, 'refs/heads/beta') }}
24+
steps:
25+
- uses: actions/checkout@v4
26+
- uses: wagoid/commitlint-github-action@v5
27+
if: github.event_name == 'pull_request'
28+
- uses: actions/setup-node@v3
29+
with:
30+
cache: "npm"
31+
node-version-file: ".nvmrc"
32+
33+
- name: Info
34+
run: |
35+
cat <<EOF
36+
Node version: $(node --version)
37+
NPM version: $(npm --version)
38+
GitHub ref: ${{ github.ref }}
39+
GitHub head ref: ${{ github.head_ref }}
40+
EOF
41+
42+
- name: Install dependencies
43+
run: npm ci
44+
45+
- name: Install Playwright browsers
46+
run: npx playwright install-deps
47+
48+
- name: Setup & Test
49+
run: |
50+
mkdir -p ./test/results
51+
npm test
52+
53+
- name: Generate release version
54+
run: |
55+
export RELEASE_TIMESTAMP=$(date +'%Y%m%d%H%M%S')
56+
export VPKG=$($(npm bin)/json -f package.json version)
57+
export VERSION=${VPKG}-prerelease.${RELEASE_TIMESTAMP}
58+
59+
echo "RELEASE_VERSION=${VERSION}" >> $GITHUB_ENV
60+
61+
if [[ "${GITHUB_REF##*/}" == hotfix/* ]]; then
62+
echo "NPM_TAG=hotfix" >> $GITHUB_ENV
63+
else
64+
echo "NPM_TAG=latest" >> $GITHUB_ENV
65+
fi
66+
67+
- name: Build
68+
run: |
69+
npm run build
70+
npm --no-git-tag-version version $VERSION
71+
72+
- name: Deploy to NPM (do a dry-run if not on master, develop, or hotfix/*)
73+
env:
74+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
75+
NPM_TAG: ${{ env.NPM_TAG }}
76+
run: |
77+
message=$([[ "$TRIGGER_DEPLOY" == "false" ]] && echo "DRY RUN of" || echo "Deploying")
78+
echo "$message version $RELEASE_VERSION to $NPM_TAG"
79+
npm set //registry.npmjs.org/:_authToken=$NPM_TOKEN
80+
npm publish --tag $NPM_TAG $([[ "$TRIGGER_DEPLOY" == "false" ]] && echo "--dry-run")
81+
82+
- name: Check Release Version and Create Tag
83+
run: |
84+
if npm info | grep -q $RELEASE_VERSION; then
85+
git tag $RELEASE_VERSION
86+
git push origin $RELEASE_VERSION
87+
fi

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ npm-*
1515
# Build
1616
/dist
1717
/playground
18+
19+
# Act
20+
.secrets

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v16

0 commit comments

Comments
 (0)