chore: open browser on configured port by default on yarn start (#7581) #3980
This file contains hidden or 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: Deploy | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
deploy: | |
name: Deploy Site | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [lts/*] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
- name: Enable webpack persistent caching | |
uses: ./.github/actions/webpack-persistent-cache | |
- run: yarn --frozen-lockfile | |
- name: Build site | |
run: yarn build | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
OPENCOLLECTIVE_API_KEY: ${{secrets.OPENCOLLECTIVE_API_KEY}} | |
- run: yarn lint:links | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
folder: dist | |
clean: true |