Skip to content

Bump semver from 6.3.0 to 6.3.1 #359

Bump semver from 6.3.0 to 6.3.1

Bump semver from 6.3.0 to 6.3.1 #359

Workflow file for this run

name: ci cd
on:
push:
branches:
- main
pull_request:
jobs:
ci-cd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: yarn
- name: install
run: |
yarn install --immutable
- name: Setup next.js build cache
uses: actions/cache@v3
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-
- name: lint
run: yarn lint
- name: compile
run: yarn compile
- name: build
run: yarn build
- name: export
run: yarn export
- name: deploy
uses: peaceiris/actions-gh-pages@v3.9.3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out
cname: watta.org