Skip to content

chore(deps): update dependency postcss to ^8.4.47 #324

chore(deps): update dependency postcss to ^8.4.47

chore(deps): update dependency postcss to ^8.4.47 #324

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
ci:
name: Lint and Test with Node.js ${{ matrix.node }}
strategy:
matrix:
node:
- 12
- 14
- 16
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Link Yarn global binaries into PATH
run: echo "$(yarn global bin)" >> $GITHUB_PATH
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Build, Lint and test
run: |
yarn lint
yarn test
yarn build
yarn typecov
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true
- name: Codecov
run: |
yarn global add codecov codacy-coverage
codecov
cat ./coverage/lcov.info | codacy-coverage -u rx-ts -n node-fs-storage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
CODACY_ACCOUNT_TOKEN: ${{ secrets.CODACY_ACCOUNT_TOKEN }}
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}