Skip to content

fix(deps): update all dependencies #1347

fix(deps): update all dependencies

fix(deps): update all dependencies #1347

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:
- 18
- 20
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Build, Lint and Test
run: |
yarn run-p build lint typecov
yarn dev iconfont.js
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true
ICONFONT_LOGIN: ${{ secrets.ICONFONT_LOGIN }}
ICONFONT_PASSWORD: ${{ secrets.ICONFONT_PASSWORD }}
ICONFONT_PROJECT: ${{ secrets.ICONFONT_PROJECT }}