Changes generated by 4fc18d11d3299fc90547848d79d4c8d601ee0f2f #47
Workflow file for this run
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
name: test & publish | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: node:lts | |
steps: | |
- uses: actions/[email protected] | |
- run: npm install --save-dev jest typescript ts-jest @types/jest | |
- run: npm test | |
transpile: | |
runs-on: ubuntu-latest | |
container: | |
image: node:lts | |
needs: | |
- test | |
steps: | |
- uses: actions/[email protected] | |
- run: npm install | |
- run: npm install -g typescript | |
- run: tsc -p . | |
- uses: actions/[email protected] | |
with: | |
path: "dist" | |
publish_to_npm: | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
container: | |
image: node:lts | |
needs: | |
- transpile | |
env: | |
DIST_FOLDER: "/dist/artifact" | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
path: "/dist" | |
- run: cp package.json $DIST_FOLDER | |
- run: cp README.md $DIST_FOLDER | |
- run: npm install | |
- name: Authenticate w/NPM. | |
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" > .npmrc | |
- name: Publish the library. | |
run: npm publish $DIST_FOLDER |