Skip to content

Update GitHub Actions workflow to download artifacts and upload relea… #20

Update GitHub Actions workflow to download artifacts and upload relea…

Update GitHub Actions workflow to download artifacts and upload relea… #20

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Test app
run: npm run test