Skip to content

refactor(config): cleanup tmp files #66

refactor(config): cleanup tmp files

refactor(config): cleanup tmp files #66

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [master]
paths:
- ".github/workflows/node.js.yml"
- "packages/rececss-core/**"
pull_request:
branches: [master]
paths:
- "packages/rececss-core/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: node -v
- run: npm -v
- run: cd ./packages/rececss-core && npm ci
- run: npm run build:core
- run: npm test
- name: Generate coverage report
run: npm run coverage:core
- name: Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}