Virksomhetsnavn fra h2 til bodyshort #363
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, build, publish | |
on: | |
- push | |
- workflow_dispatch | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'npm' | |
- name: install dependencies | |
run: npm ci | |
- name: build | |
run: npm run build | |
- if: github.ref == 'refs/heads/master' | |
name: publish on npmjs.org | |
run: | | |
if jq --null-input --exit-status \ | |
--argjson local "$(jq .version package.json)" \ | |
--argjson published "$(npm view --json @navikt/bedriftsmeny versions)" \ | |
'$published | map(. == $local) | any' | |
then | |
echo "Version already published. Nothing to do." | |
else | |
npm publish --access public | |
fi | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
registry-url: 'https://npm.pkg.github.com' | |
- if: github.ref == 'refs/heads/master' | |
name: publish on github | |
run: | | |
if jq --null-input --exit-status \ | |
--argjson local "$(jq .version package.json)" \ | |
--argjson published "$(npm view --json @navikt/bedriftsmeny versions)" \ | |
'$published | map(. == $local) | any' | |
then | |
echo "Version already published. Nothing to do." | |
else | |
npm publish --access public | |
fi | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |