Skip to content

Instantly share code, notes, and snippets.

@paullessing
Last active May 6, 2020 10:09
Show Gist options
  • Save paullessing/a5ffac24af1f418669cc77be699a5801 to your computer and use it in GitHub Desktop.
Save paullessing/a5ffac24af1f418669cc77be699a5801 to your computer and use it in GitHub Desktop.
GitHub Actions: Publishing bundled packages with TypeScript: Configuring the build environment
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