chore(deps): bump braces and jest #183
This file contains 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: build | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
strategy: | |
matrix: | |
node-version: [13.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Get npm cache directory path | |
id: npm-cache-dir-path | |
run: echo "::set-output name=dir::$(npm config get cache)" | |
- name: Cache npm modules | |
uses: actions/cache@v1 | |
with: | |
path: ${{ steps.npm-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: ${{ runner.os }}-npm | |
- name: Install | |
run: npm ci | |
- name: Prettier check | |
run: npm run format:check | |
- name: Build | |
run: npm run build | |
- name: Test | |
run: npm test | |
- name: Deploy | |
if: github.ref == 'refs/heads/master' | |
# https://github.com/peaceiris/actions-gh-pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build | |
force_orphan: true | |
disable_nojekyll: true | |
- name: Pack | |
id: pack-npm | |
run: echo "::set-output name=filename::$(npm pack | tail -1)" | |
- name: Unpack | |
run: tar -xvzf $filename | |
env: | |
filename: ${{ steps.pack-npm.outputs.filename }} | |
- name: Deploy nightly | |
if: github.ref == 'refs/heads/master' | |
# https://github.com/peaceiris/actions-gh-pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./package | |
force_orphan: true | |
publish_branch: nightly | |
disable_nojekyll: true |