Skip to content

Merge pull request #1 from Gorfort/website #7

Merge pull request #1 from Gorfort/website

Merge pull request #1 from Gorfort/website #7

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
name: First Github Action workflow
on: [push]
jobs:
build:
name: FirstBuildJob
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Build
run: npm run build --if-present
- name: Test
run: npm test