Skip to content

fix(deps): update all dependencies #973

fix(deps): update all dependencies

fix(deps): update all dependencies #973

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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # 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 }}