Bump postcss and microbundle #6
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: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- '**' | |
push: | |
branches: | |
- master | |
- restructure | |
workflow_call: | |
jobs: | |
build_test: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- name: Cache node modules | |
uses: actions/cache@v1 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
# This uses the same name as the build-action so we can share the caches. | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- run: npm ci | |
- name: test | |
env: | |
CI: true | |
COVERAGE: true | |
FLAKEY: false | |
# Not using `npm test` since it rebuilds source which npm ci has already done | |
run: | | |
npm run lint | |
npm run test:unit | |
- name: Coveralls GitHub Action | |
uses: coverallsapp/github-action@v1.0.1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Package | |
# Use --ignore-scripts here to avoid re-building again before pack | |
run: | | |
npm pack --ignore-scripts | |
mv preact-*.tgz preact.tgz | |
- name: Upload npm package | |
uses: actions/upload-artifact@v2 | |
with: | |
name: npm-package | |
path: preact.tgz |