Skip to content

chore(deps): update akhilmhdh/contributors-readme-action action to v2… #2256

chore(deps): update akhilmhdh/contributors-readme-action action to v2…

chore(deps): update akhilmhdh/contributors-readme-action action to v2… #2256

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: npm install
run: |
yarn install
env:
CI: true
- name: linting
run: |
yarn run lint
yarn run check_formatted
env:
CI: true
- name: yarn run test
run: |
yarn test
env:
CI: true
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}