Skip to content

Merge pull request #57 from EvandroLG/dependabot/npm_and_yarn/demo/pl… #320

Merge pull request #57 from EvandroLG/dependabot/npm_and_yarn/demo/pl…

Merge pull request #57 from EvandroLG/dependabot/npm_and_yarn/demo/pl… #320

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Begin CI...
uses: actions/checkout@v2
- name: Use Node v18.13.0
uses: actions/setup-node@v1
with:
node-version: 18.13.0
- name: Install dependencies
run: npm ci
env:
CI: true
- name: Lint
run: npm run lint
env:
CI: true
- name: Test
run: npm run test --ci --coverage --maxWorkers=2
env:
CI: true
- name: Build
run: npm run build
env:
CI: true