diff options
Diffstat (limited to '.github/workflows/modern.yml')
-rw-r--r-- | .github/workflows/modern.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/modern.yml b/.github/workflows/modern.yml new file mode 100644 index 00000000..56e2810b --- /dev/null +++ b/.github/workflows/modern.yml @@ -0,0 +1,23 @@ +name: Modern App Lint + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + cache: npm + cache-dependency-path: modern/package-lock.json + - run: npm ci + working-directory: modern + - run: npm run lint + working-directory: modern |