You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actionsname: Node.js CIon:
push:
branches: [ master ]pull_request:
branches: [ master ]jobs:
build:
runs-on: ubuntu-latestenv:
CI: trueACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}SPACE_ID: ${{ secrets.SPACE_ID }}strategy:
matrix:
node-version: [10.x, 12.x]steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}uses: actions/setup-node@v1with:
node-version: ${{ matrix.node-version }}
- name: Install, build, and testrun: | npm ci npm run build --if-present npm run test:unit
- name: Vercel Actionuses: amondnet/vercel-action@v19.0.1+1with:
vercel-token: ${{ secrets.VERCEL_TOKEN }} # Requiredvercel-args: '--prod'#Optionalvercel-org-id: ${{ secrets.ORG_ID}} #Requiredvercel-project-id: ${{ secrets.PROJECT_ID}} #Required
I'm kind of new to this, but what I'm attempting to do here is have an action run through building and testing the app, then I'd like to deploy to vercel, once tests have passed.
The text was updated successfully, but these errors were encountered:
Hi, I'm attempting to use vercel-action but keep running into issues.
I have followed the documentation here: https://github.com/marketplace/actions/vercel-action
The latest error is this one:
Here's my .yml file for github actions:
I'm kind of new to this, but what I'm attempting to do here is have an action run through building and testing the app, then I'd like to deploy to vercel, once tests have passed.
The text was updated successfully, but these errors were encountered: