Emoji Mart: Update to Emoji 15 #98
Workflow file for this run
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: EmojiMart Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
integrity: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: nodenv/actions/[email protected] | |
id: nodenv | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '${{ steps.nodenv.outputs.node-version }}' | |
cache: 'yarn' | |
- run: yarn install | |
- run: yarn prettier | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: nodenv/actions/[email protected] | |
id: nodenv | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '${{ steps.nodenv.outputs.node-version }}' | |
cache: 'yarn' | |
- run: yarn install | |
- run: yarn test |