This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
chore(deps-dev): update development dependencies #4131
This file contains 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 ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup node env | |
uses: actions/setup-node@v3.2.0 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: npm ci --no-audit | |
- name: Build | |
run: npm run build |