Skip to content

Ignore bits that were introduced as padding in transformUnitSize (f… #2

Ignore bits that were introduced as padding in transformUnitSize (f…

Ignore bits that were introduced as padding in transformUnitSize (f… #2

Workflow file for this run

name: Preview Deployment
env:
APP_ENV: development
APP_RELEASE: ${{ github.sha }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches-ignore:
- main
jobs:
deploy-preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
- name: Install Vercel CLI
run: npm install --global vercel
- name: Pull Vercel environment information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build project artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy project artifacts to Vercel
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}