-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(deployment): drop node 12 from testing matrix and tidy up workflows (
#746)
- Loading branch information
Showing
3 changed files
with
83 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: Publish package | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 'lts/*' | ||
- run: npm ci | ||
- run: npm run build:package | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: mojds-package | ||
path: package | ||
- run: npm run build:dist | ||
- run: npm run build:docs | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: mojds-dist | ||
path: dist | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
|
||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x, 18.x, 20.x, 21.x, 22.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: mojds-package | ||
path: package | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Test Sass can be compiled | ||
run: npm run test:sass | ||
|
||
publish: | ||
runs-on: ubuntu-latest | ||
needs: [build, test] | ||
if: github.event_name == 'push' | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: lts/* | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: mojds-package | ||
path: package | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: mojds-dist | ||
path: dist | ||
- run: npm ci | ||
- name: Publish to NPM | ||
run: npm run ci:release | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |