Skip to content

Commit

Permalink
Create: workflow for build & test
Browse files Browse the repository at this point in the history
- Add github workflow to
  - Compile
  - Build
  - Test
  • Loading branch information
achukka committed May 19, 2021
1 parent c90f4df commit caf0751
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build_test_react.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build and Test React Application

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build_test:
# The type of runner that the job will run on
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: npm ci, build and test

This comment has been minimized.

Copy link
@pramish

pramish Mar 4, 2022

shouldn't this be npm i instead of npm ci

This comment has been minimized.

Copy link
@araleo
run: |
npm ci

This comment has been minimized.

Copy link
@pramish

pramish Mar 4, 2022

same here

npm run build --if-present
npm test

0 comments on commit caf0751

Please sign in to comment.