Last active
May 6, 2020 10:09
-
-
Save paullessing/a5ffac24af1f418669cc77be699a5801 to your computer and use it in GitHub Desktop.
GitHub Actions: Publishing bundled packages with TypeScript: Configuring the build environment
This file contains hidden or 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
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- run: yarn install --frozen-lockfile | |
- run: yarn pack --filename=release.tgz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment