Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork5
chore(deps): bump vite from 6.2.0 to 6.2.3#1452
Workflow file for this run
This file contains hidden or 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 | |
concurrency: | |
group:${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress:true | |
jobs: | |
ci: | |
name:Lint and Test with Node.js ${{ matrix.node }} | |
strategy: | |
matrix: | |
node: | |
-18 | |
-20 | |
-22 | |
fail-fast:false | |
runs-on:ubuntu-latest | |
env: | |
YARN_IGNORE_NODE:1 | |
steps: | |
-name:Checkout Repo | |
uses:actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683# v4 | |
-name:Setup Node.js ${{ matrix.node }} | |
uses:actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e# v4 | |
with: | |
node-version:${{ matrix.node }} | |
cache:yarn | |
-name:Install Dependencies | |
run:yarn --immutable | |
-name:Check, Lint and test | |
run:| | |
yarn check | |
npx browserslist | |
yarn lint | |
yarn test | |
env: | |
EFF_NO_LINK_RULES:true | |
PARSER_NO_WATCH:true | |
-name:Check Postcss | |
run:npx postcss-cli postcss tests/test.css --verbose | |
env: | |
NODE_ENV:production | |
-name:Codecov | |
uses:codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574# v5 | |
with: | |
token:${{ secrets.CODECOV_TOKEN }} |