fix: removed languages and change apr order #966
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: Create Build Artifacts | |
env: | |
CI: true | |
on: | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
cache: 'yarn' | |
registry-url: 'https://registry.npmjs.org/' | |
- run: yarn --frozen-lockfile | |
- name: Bump package.json | |
run: | | |
npm --no-git-tag-version version $(npm show . version)-internal.$(git rev-parse --short HEAD) | |
# create env file from secrets | |
- run: echo "${{ secrets.ENV_FILE }}" > .env | |
- run: yarn tsc && yarn lint | |
- run: yarn build | |
# remove .env so that we don't include in build_artifacts.zip file | |
- run: rm -rf .env | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: build_artifacts | |
path: | | |
* | |
!src | |
!.husky | |
!.github | |
!.git | |
!node_modules | |
# we need to save PR number to some file artifact so that we can fetch it in publish-internal workflow | |
- name: Save PR number | |
run: | | |
mkdir -p ./pr | |
echo ${{ github.event.number }} > ./pr/PR_NUMBER | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: pr | |
path: pr/ |