Skip to content

RUN-1659: Add release workflows #9

RUN-1659: Add release workflows

RUN-1659: Add release workflows #9

Workflow file for this run

name: Run tests
on:
push:
branches-ignore:
- main # This branch can only be pushed to via PRs, which would have run tests already
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Run tests
run: npm run test:ci
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: ./coverage