Skip to content

feat: add javascript workflows via GitHub Workflows #1

feat: add javascript workflows via GitHub Workflows

feat: add javascript workflows via GitHub Workflows #1

Workflow file for this run

name: JavaScript Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
name: Linting JavaScript code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "12"
- name: Cache node modules
uses: actions/cache@v2
with:
path: benchexec/tablegenerator/react-table/node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-modules-
- name: Install dependencies
run: npm ci
working-directory: benchexec/tablegenerator/react-table
- name: Lint
run: npm run lint
working-directory: benchexec/tablegenerator/react-table
tests:
name: Run JavaScript tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "12"
- name: Cache node modules
uses: actions/cache@v2
with:
path: benchexec/tablegenerator/react-table/node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-modules-
- name: Install dependencies
run: npm ci
working-directory: benchexec/tablegenerator/react-table
- name: Run tests
run: npm run test
working-directory: benchexec/tablegenerator/react-table
javascript-build:
name: Build JavaScript
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "12"
- name: Cache node modules
uses: actions/cache@v2
with:
path: benchexec/tablegenerator/react-table/node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-modules-
- name: Install dependencies
run: npm ci
working-directory: benchexec/tablegenerator/react-table
- name: Build
run: |
npm run build
git diff --stat --exit-code
working-directory: benchexec/tablegenerator/react-table