Skip to content

resolve conflict pull master #51

resolve conflict pull master

resolve conflict pull master #51

Workflow file for this run

name: CI
on:
push:
branches: [master, v2.0.0-beta]
pull_request:
branches: [master, v2.0.0-beta]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn
- name: Generate files
run: yarn generate
- name: Run tests
run: yarn test