Skip to content

feat: add javascript workflows via GitHub Workflows #2

feat: add javascript workflows via GitHub Workflows

feat: add javascript workflows via GitHub Workflows #2

Workflow file for this run

# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2023 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0
name: JavaScript Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
name: Perform linting
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: Running 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: Building the application
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