fix: update dependency @dword-design/reset-sass to v1.0.70 #330
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
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
runs-on: ubuntu-latest | |
steps: | |
- env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
uses: rokroskar/workflow-run-cleanup-action@v0.3.3 | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
lfs: true | |
ref: ${{ github.event.pull_request.head.repo.full_name == github.repository && | |
github.event.pull_request.head.ref || '' }} | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
- run: git config --global user.email "actions@github.com" | |
- run: git config --global user.name "GitHub Actions" | |
- run: yarn --frozen-lockfile | |
- run: yarn test | |
- if: failure() | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Image Snapshot Diffs | |
path: "**/__image_snapshots__/__diff_output__" | |
- uses: codecov/codecov-action@v2 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- run: yarn checkUnknownFiles | |
- env: | |
GITHUB_REPOSITORY: ${{ secrets.GITHUB_REPOSITORY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
name: Push changed files | |
run: yarn dw-ci push-changed-files | |
- env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
if: github.ref == 'refs/heads/master' | |
name: Release | |
run: yarn semantic-release | |
name: build | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- master |