Skip to content

Merge pull request #259 from hylink-oscar-caballero/patch-1 #291

Merge pull request #259 from hylink-oscar-caballero/patch-1

Merge pull request #259 from hylink-oscar-caballero/patch-1 #291

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: checkout
uses: actions/checkout@master
- name: install pnpm
run: npm install -g pnpm
- name: cache node_modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/pnpm-lock.yaml')) }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: pnpm install
- name: Lint
run: pnpm run lint
# - name: Test
# run: yarn test
# - name: Coverage
# run: yarn codecov
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}