use npm ci instead of npm i in ci workflow

This commit is contained in:
MarconLP 2023-05-04 10:06:37 +02:00
parent 2fe540fa4d
commit d02c005939
No known key found for this signature in database
GPG key ID: A08A9C8B623F5EA5

View file

@ -24,8 +24,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install Dependencies
run: npm install
run: npm ci
- name: Typecheck
run: npm run typecheck