Skip to content

Merge pull request #5 from decentraland/feat/remove-dependabot #24

Merge pull request #5 from decentraland/feat/remove-dependabot

Merge pull request #5 from decentraland/feat/remove-dependabot #24

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Use Node.js 20.x
uses: actions/setup-node@v1
with:
node-version: 20.x
- name: Install
run: npm ci
- name: Test
run: npm run test:coverage
if: ${{ always() }}