Skip to content

feat: New Javascript entry point - my.js?my-map,my-... (#43) #98

feat: New Javascript entry point - my.js?my-map,my-... (#43)

feat: New Javascript entry point - my.js?my-map,my-... (#43) #98

Workflow file for this run

# https://github.com/actions/starter-workflows/blob/main/ci/node.js.yml
name: Deploy
on: [push, pull_request]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
env:
NODE_VERSION: 18
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
name: Build & Deploy
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
check-latest: true
# cache: 'npm'
- run: npm ci
- run: npm run build --if-present
#- run: npm run build:feed
#- run: npm run build:template
- run: npm test
- name: Delete 'node_modules'
run: rm -rf node_modules
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# Upload entire repository.
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
# End.