Skip to content

chore(deps): update dependency svelte to v4 [security] #742

chore(deps): update dependency svelte to v4 [security]

chore(deps): update dependency svelte to v4 [security] #742

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:
- 14
- 16
- 18
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Link Yarn global binaries into PATH
run: echo "$(yarn global bin)" >> $GITHUB_PATH
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Build, Lint and Test
run: |
yarn build
yarn lint
# yarn test
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true