8000 Merge pull request #576 from Vampire/use-if-always · dorny/test-reporter@0b4ea9b · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge pull request #576 from Vampire/use-if-always #709

7731

Merge pull request #576 from Vampire/use-if-always

Merge pull request #576 from Vampire/use-if-always #709

Workflow file for this run

name: 'CI'
on:
pull_request:
paths-ignore: [ '**.md' ]
push:
paths-ignore: [ '**.md' ]
branches:
- main
workflow_dispatch:
jobs:
build-test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npm run build
- run: npm run format-check
- run: npm run lint
- run: npm test
- name: Upload test results
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: test-results
path: __tests__/__results__/*.xml
0