Skip to content

chore(deps): update yarn to v4 #1831

chore(deps): update yarn to v4

chore(deps): update yarn to v4 #1831

Workflow file for this run

name: test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [14.x, 16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: npm i -g yarn
- run: yarn install
- run: yarn test
coverage:
needs: [ test ]
if: ${{ github.event_name != 'pull_request' }}
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: actions/setup-node@v3
with:
node-version: '14'
- run: npm install -g yarn
- run: yarn install
- run: yarn build
- uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: yarn run test:coverage
coverageLocations: |
${{github.workspace}}/coverage/*.lcov:lcov