Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
28
Frontend-Learner/node_modules/@mapbox/node-pre-gyp/.github/workflows/ci.yml
generated
vendored
Normal file
28
Frontend-Learner/node_modules/@mapbox/node-pre-gyp/.github/workflows/ci.yml
generated
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
|
||||
|
||||
name: ci
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
ci:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node-version: ['20.x', '24.x', 'lts/*']
|
||||
os: [macos-latest, ubuntu-latest, ubuntu-24.04-arm, windows-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: npm ci
|
||||
- run: npm audit
|
||||
- run: npm run lint
|
||||
# - run: npm run update-crosswalk # To support newer versions of Node.js
|
||||
- run: npm run build --if-present
|
||||
- run: npm test
|
||||
Loading…
Add table
Add a link
Reference in a new issue