build(deps): bump es5-ext from 0.10.62 to 0.10.64 #1042
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
ci: | |
name: Lint and Test with Node.js ${{ matrix.node }} | |
strategy: | |
matrix: | |
node: | |
- 16 | |
- 18 | |
- 20 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn --frozen-lockfile --ignore-engines | |
- name: Check, Lint and test | |
run: | | |
yarn run check | |
yarn browserslist | |
yarn lint | |
yarn test | |
env: | |
EFF_NO_LINK_RULES: true | |
PARSER_NO_WATCH: true | |
- name: Check Postcss | |
run: npx postcss-cli tests/test.css --verbose | |
env: | |
NODE_ENV: production | |
- name: Codecov | |
uses: codecov/codecov-action@v3 |