Update publish.yml #2
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
# CI/CD Pipeline for Build, Test, Package, and Publish | |
name: Build-Test-Package-Publish | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 22 | |
- run: npm ci | |
- run: npm install http-server -g | |
- run: | | |
http-server ./ -p 8080 & | |
sleep 5 # Wait for 5 seconds to ensure http-server is up | |
npm run test:browser | |
package: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 22 | |
- run: npm ci | |
- run: npm install uglifyjs -g | |
- run: npm run build | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: servicestack-client | |
path: | | |
./dist/index.d.ts | |
./dist/index.js | |
./dist/servicestack-client.min.js | |
./dist/servicestack-client.min.mjs | |
./dist/servicestack-client.mjs | |
./dist/servicestack-client.umd.js |