Add support for literal types #24
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: "ndc-lambda-sdk npm package" | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- 'main' | |
tags: | |
- v** | |
defaults: | |
run: | |
working-directory: ./ndc-lambda-sdk | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
registry-url: https://registry.npmjs.org | |
cache: npm | |
cache-dependency-path: ./ndc-lambda-sdk/package-lock.json | |
- run: npm ci | |
- run: npm run build | |
- run: npm test | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
registry-url: https://registry.npmjs.org | |
cache: npm | |
cache-dependency-path: ./ndc-lambda-sdk/package-lock.json | |
- run: | | |
PACKAGE_VERSION=`npm version | sed -rn "2 s/.*: '([^']*)'.*/\1/g; 2 p"` | |
TAG=`echo "$GITHUB_REF"| sed -r "s#.*/##g"` | |
echo '$TAG' = "$TAG" | |
echo '$GITHUB_REF' = "$GITHUB_REF" | |
echo '$PACKAGE_VERSION' = "$PACKAGE_VERSION" | |
if [ "$TAG" = "v$PACKAGE_VERSION" ] | |
then | |
echo "Success! Versions match." | |
else | |
echo "Package version (v$PACKAGE_VERSION) must match tag (GITHUB_REF: $GITHUB_REF) in order to publish" 1>&2 | |
exit 1 | |
fi | |
- run: npm ci | |
- run: npm run build | |
- run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |