Skip to content

fix(ci/cd): Correct workflow /8 #411

fix(ci/cd): Correct workflow /8

fix(ci/cd): Correct workflow /8 #411

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install
run: npm clean-install
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Test
run: npm run test:nowatch