Skip to content

Merge pull request #27 from tiago154/update-dependencies #15

Merge pull request #27 from tiago154/update-dependencies

Merge pull request #27 from tiago154/update-dependencies #15

Workflow file for this run

name: Validations Project
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Run linting
run: npm run lint
- name: Run tests
run: npm run test -- -u
env:
FORCE_COLOR: true