Skip to content

Bump shell-quote and concurrently #658

Bump shell-quote and concurrently

Bump shell-quote and concurrently #658

Workflow file for this run

name: JS
on: [push, pull_request]
jobs:
build:
name: Test JS
runs-on: ubuntu-22.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Read .nvmrc
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: Install packages
run: npm install
- name: Lint JS
run: npm run lint
- name: Build JS with Parcel
run: npm run dev:js