Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Bump nock from 12.0.3 to 13.3.7 #734

Bump nock from 12.0.3 to 13.3.7

Bump nock from 12.0.3 to 13.3.7 #734

Workflow file for this run

#
# Copyright 2020, 2022 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Pull request validation
on:
pull_request:
branches: [development, main, release/*]
jobs:
validation:
runs-on: macos-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: clear cache
run: yarn cache clean
- name: install
run: yarn
- name: lint
run: yarn lint
- name: type-check
run: yarn check-types
- name: type-check for tests
run: yarn check-test-types
- name: test
run: yarn test
- name: test and comment
continue-on-error: true
uses: mattallty/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
test-command: "yarn test --maxWorkers=2"