Skip to content

NOISSUE - Add role and actions to domain #492

NOISSUE - Add role and actions to domain

NOISSUE - Add role and actions to domain #492

Workflow file for this run

# Copyright (c) Abstract Machines
# SPDX-License-Identifier: Apache-2.0
name: Testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Testing
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
always-auth: false
check-latest: true
- name: Install dependencies
run: npm install
- name: Run Jest tests
run: npm test -- --passWithNoTests
- name: Lint with ESLint
run: npm run lint