Skip to content

Commit

Permalink
Merge branch 'main' into renovate/babel-monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzurbonsen authored Nov 16, 2024
2 parents 7e8e31c + dfa0b43 commit 8582b06
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 3 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# SPDX-FileCopyrightText: 2024 Alexander zur Bonsen <[email protected]>
# SPDX-License-Identifier: Apache-2.0

name: Lint
run-name: Lint if-webpage-plugins

on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: 22

- name: Install dependencies
run: npm install

- name: Run unit tests
run: npm run lint
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# SPDX-FileCopyrightText: 2024 Alexander zur Bonsen <[email protected]>
# SPDX-License-Identifier: Apache-2.0

name: Test
run-name: Run unit tests for if-webpage-plugins

on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: 22

- name: Install dependencies
run: npm install

- name: Run unit tests
run: npm test
7 changes: 4 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8582b06

Please sign in to comment.