update dependencies, migrate scss code #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'documentation/**' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'documentation/**' | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Run testbuild | |
run: npm run testbuild | |
- name: Run tests | |
run: npm run test:ci | |
- name: Publish test results | |
uses: mikepenz/action-junit-report@v3 | |
if: success() || failure() | |
with: | |
include_passed: true | |
fail_on_failure: true | |
require_tests: true | |
report_paths: "junit.xml" | |
detailed_summary: true |