fix(deps): bump better-sqlite3 from 7.4.6 to 10.0.0 in /backend #1603
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: build pipeline | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build_library: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install global deps | |
run: | | |
npm install -g @angular/cli | |
- name: Install project dependencies | |
run: npm install | |
- name: Lint library project | |
run: ng lint --project strapi-auth | |
- name: Build library | |
run: npm run build_lib | |
build_showcase: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install global deps | |
run: | | |
npm install -g @angular/cli | |
- name: Install project dependencies | |
run: npm install | |
- name: Install strapi dependencies | |
run: cd backend && npm install | |
- name: Lint library showcase project | |
run: ng lint --project strapi-auth-example | |
- name: Build showcase | |
run: cd projects/strapi-auth-example && ng build --project strapi-auth-example | |
- name: Build strapi | |
run: cd backend && npm run build |