Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: OpenTechStrategies/arches-app-exp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1895a716c30b6a217536532784d554a892357355
Choose a base ref
..
head repository: OpenTechStrategies/arches-app-exp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e7c3c800039b7d62e4f5cce5a017c0c911ac0006
Choose a head ref
Showing with 18 additions and 0 deletions.
  1. +18 −0 .github/workflows/build.yml
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Lint
on:
pull_request:
push:
jobs:
run_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: 'front-end/.node-version'
- name: Install dependencies
working-directory: ./front-end
run: npm ci
- name: Build
working-directory: ./front-end
run: npm run build