-
Notifications
You must be signed in to change notification settings - Fork 75
82 lines (71 loc) · 2.49 KB
/
main.yml
File metadata and controls
82 lines (71 loc) · 2.49 KB
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
79
80
81
82
name: main
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macOS-latest]
name: Build and test on ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
# caching NPM dependencies
# https://github.com/actions/cache/blob/master/examples.md#node---npm
# https://github.com/actions/cache
- uses: actions/cache@v5
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: node -v
- run: npm ci
# only makes sense to check code format on 1 OS
- name: Linting 🧹
if: matrix.os == 'ubuntu-22.04'
run: npm run format:check
- run: npm test
release:
runs-on: ubuntu-22.04
name: release
needs: build-and-test
permissions:
# allow the release step to comment on
# issues, pull requests, and write to the repo
contents: write
issues: write
pull-requests: write
# Required for OIDC to let NPM registry know
# that this workflow is trusted
id-token: write
# only release from the master branch
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- run: echo $GITHUB_SHA
# trying to use this action to install dependencies for semantic release
- uses: bahmutov/npm-install@HEAD
# https://github.com/cycjimmy/semantic-release-action
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v6
id: semantic
with:
branch: master
extra_plugins: |
@semantic-release/git
@semantic-release/changelog
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Push updates to branch for major version
# if there is a new version published, let's say v1.2.3
# then this step will update branch "v1" to this commit
# https://github.com/cypress-io/github-action/branches
if: steps.semantic.outputs.new_release_published == 'true'
run: 'git push https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git HEAD:refs/heads/v${{steps.semantic.outputs.new_release_major_version}}'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}