-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(CI): move from shutdown travis ci to github actions
- Loading branch information
1 parent
cb8cacc
commit a526b4e
Showing
2 changed files
with
36 additions
and
26 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# GitHub Actions docs | ||
# https://help.github.com/en/articles/about-github-actions | ||
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
name: CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
# Machine environment: | ||
# https://help.github.com/en/articles/software-in-virtual-environments-for-github-actions#ubuntu-1804-lts | ||
# We specify the Node.js version manually below, and use versioned Chrome from Puppeteer. | ||
runs-on: ubuntu-18.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js 16.14.2 | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16.14.2 | ||
- name: Install dependencies | ||
run: yarn --frozen-lockfile --non-interactive --no-progress | ||
- name: Format check | ||
run: yarn prettier:check | ||
- name: Build Lib | ||
run: yarn build | ||
- name: Test Lib | ||
run: yarn test | ||
- name: Check Readme | ||
run: yarn readme:check | ||
- name: Release | ||
if: contains('refs/heads/master', github.ref) | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: npx semantic-release |
This file was deleted.
Oops, something went wrong.