feat(node:web): implemented the pricing page #140
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: The CI workflow on push | |
on: | |
push: | |
branches: | |
- '*' | |
- '!main' | |
permissions: | |
contents: read | |
jobs: | |
build-unity: | |
runs-on: ubuntu-latest | |
env: | |
listPublishDirectory: Website | |
packagePath: Packages/${{ vars.PACKAGE_NAME }} | |
pathToCi: ci | |
unityPackage: ${{ vars.PACKAGE_NAME }}-feature.unitypackage | |
zipFile: ${{ vars.PACKAGE_NAME }}-feature.zip | |
steps: | |
- name: Checkout Local Repository | |
uses: actions/checkout@v4 | |
- name: Zip the Package for testing | |
run: zip -r "${{ github.workspace }}/${{ env.zipFile }}" . | |
working-directory: "${{ env.packagePath }}" | |
- name: Build a list of .meta files for future use | |
run: find "${{ env.packagePath }}/" -name '*.meta' -type f >> metaList | |
- name: Make a UnityPackage version of the Package for release | |
uses: pCYSl5EDgo/create-unitypackage@v1 | |
with: | |
package-path: ${{ env.unityPackage }} | |
include-files: metaList | |
- name: Checkout Automation Repository without removing prior checkouts | |
uses: actions/checkout@v4 | |
with: | |
repository: vrchat-community/package-list-action | |
path: ${{ env.pathToCi }} | |
clean: false | |
- name: Deploy the global.json file | |
run: cp "${{ github.workspace }}/global.json" "${{ env.pathToCi }}/" | |
- name: Load cached data from previous runs | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ env.pathToCi }}/.nuke/temp | |
~/.nuget/packages | |
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }} | |
- name: Build Package Version Listing with Nuke | |
run: '"${{ env.pathToCi }}/build.cmd" BuildRepoListing --root "${{ env.pathToCi }}" --list-publish-directory "$GITHUB_WORKSPACE/${{ env.listPublishDirectory }}" --current-package-name "${{ vars.PACKAGE_NAME }}"' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
build-web: | |
defaults: | |
run: | |
shell: ${{ matrix.platform.shell }} | |
name: The build process | |
runs-on: ${{ matrix.platform.os }} | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Stages the pushed branch | |
uses: actions/checkout@v4 | |
- name: Pre-prepare the Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
- name: Enable the corepack because of the pnpm | |
run: corepack enable | |
- name: Post-prepare the Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
cache: ${{ !env.ACT && 'pnpm' || '' }} | |
node-version-file: .node-version | |
- env: | |
HUSKY: 0 | |
name: Install the dependencies | |
run: pnpm install --prefer-frozen-lockfile | |
- name: Run the build | |
run: pnpm run build | |
- name: Run the tests | |
run: pnpm run test | |
strategy: | |
matrix: | |
platform: | |
- os: ubuntu-latest | |
shell: bash | |
- os: windows-latest | |
shell: bash | |
- os: windows-latest | |
shell: powershell | |
fail-fast: false | |
timeout-minutes: 30 |