Add new grid #73
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [17.x] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Cache | |
id: cache-node-modules | |
uses: actions/cache@v2 | |
with: | |
path: | | |
**/node_modules | |
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | |
cache: npm | |
- name: 🏗 Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
cache: npm | |
- name: 🏗 Setup Expo | |
uses: expo/expo-github-action@v7 | |
with: | |
expo-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- name: Echo Infomation | |
run: | | |
echo "event name: ${{github.event_name}}" | |
echo "event action: ${{github.event.action}}" | |
echo "event number: ${{github.event.number}}" | |
- name: Get semver | |
id: semver | |
uses: heineiuo/[email protected] | |
- name: Create Tag | |
if: | | |
github.event_name == 'push' && steps.semver.outputs.valid == 'true' | |
uses: negz/create-tag@v1 | |
with: | |
version: ${{ steps.semver.outputs.raw }} | |
message: ${{ steps.semver.outputs.raw }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Changelogs | |
if: | | |
github.event_name == 'push' && steps.semver.outputs.valid == 'true' | |
id: changelog | |
uses: heineiuo/create-changelogs@master | |
- name: Install Dependencies | |
if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
run: | | |
npm ci | |
env: | |
CI: true | |
- name: Build | |
run: | | |
npm run build:commonjs | |
npm run build:module | |
npm run build:typescript | |
npm run build:web | |
env: | |
CI: true | |
- name: Publish to NPM | |
if: | | |
github.event_name == 'push' && steps.semver.outputs.valid == 'true' | |
run: | | |
echo '//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}' > ~/.npmrc | |
npm publish | |
- name: 🚀 Deploy | |
if: | | |
github.event_name == 'push' | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: web-build # The folder the action should deploy. | |
- name: Create Github Release | |
if: | | |
github.event_name == 'push' && steps.semver.outputs.valid == 'true' | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag: ${{ steps.semver.outputs.raw }} | |
draft: false | |
body: ${{ steps.changelog.outputs.changelogs }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
prerelease: ${{ steps.semver.outputs.is_prerelease == 'true' }} |