Skip to content

build(deps): Bump @dcl/schemas from 6.18.0 to 7.0.0 #242

build(deps): Bump @dcl/schemas from 6.18.0 to 7.0.0

build(deps): Bump @dcl/schemas from 6.18.0 to 7.0.0 #242

Workflow file for this run

name: node
on: push
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: install
run: npm ci
- name: build
run: npm run build
- name: linter
run: npm run lint
if: ${{ always() }}
- name: test
run: npm run test
- name: Report coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}