mirror of
https://github.com/jakejarvis/imagemoji.git
synced 2025-04-26 21:48:27 -04:00
22 lines
411 B
YAML
22 lines
411 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16.x
|
|
cache: yarn
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn test
|
|
- run: yarn build
|