Skip to content

update typescript to 5.2.2 #474

update typescript to 5.2.2

update typescript to 5.2.2 #474

Workflow file for this run

name: Build
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16", "18"]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Display version of Node.js, npm, Yarn
run: |
node -v
npm -v
yarn --version
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn
- run: yarn lint
type-check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16", "18"]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Display version of Node.js, npm, Yarn
run: |
node -v
npm -v
yarn --version
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn
- run: yarn type-check
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16", "18"]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: ls modules/*/package.json | xargs -n1 md5sum > deps.txt
- name: Display version of Node.js, npm, Yarn
run: |
node -v
npm -v
yarn --version
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn
- run: yarn cov-test
# TODO: set token for coverall
# - run: npx lcov-result-merger 'modules/*/coverage/lcov.info' | npx coveralls
# env:
# COVERALLS_GIT_BRANCH: "${{ github.ref }}"