Skip to content

Bump braces from 3.0.2 to 3.0.3 #50

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #50

Workflow file for this run

# This workflow will do a clean install of node dependencies,
# run the linter to check for issues and the build the source code as a test.
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: cd ./yivi-css && npm run clean
- run: npm run link
- run: npm run build
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v1
with:
path: docs/
deploy-github-pages:
# Exclude job on feature branches, because GitHub Pages does not support this yet.
if: github.ref == 'refs/heads/master'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
concurrency:
group: github-pages
cancel-in-progress: true
runs-on: ubuntu-latest
needs: build
steps:
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1