Skip to content

Commit

Permalink
added run test
Browse files Browse the repository at this point in the history
  • Loading branch information
brnaba-aws committed Jul 25, 2024
1 parent 4cc6664 commit 7a424c0
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Run tests on the project

on:
push:
branches:
- main
pull_request:
types:
- opened
- edited


permissions:
contents: read

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Link Checker
uses: lycheeverse/lychee-action@c053181aa0c3d17606addfe97a9075a32723548a
with:
fail: true
args: --scheme=https . --exclude-all-private
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run coverage
# - name: Spell check
# uses: streetsidesoftware/cspell-action@4dc9d4bdf3974ed26d6f2e973c1e168edff47d80
# with:
# files: '**/*.{md,ts}'
# strict: true
# check_dot_files: true
# incremental_files_only: false
# config: 'cspell.config.yml'
# - name: Run ShellCheck
# uses: ludeeus/action-shellcheck@cd81f4475ab741e097ec0fe73b692f3e49d66b8c
# with:
# scandir: '.'
# ignore_paths: >-
# node_modules
# .husky

0 comments on commit 7a424c0

Please sign in to comment.