Fix config file loader for Windows #133
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: Main | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: yarn | |
- name: Install project dependencies | |
run: yarn install | |
- name: Lint | |
run: yarn lint | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: lint | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: yarn | |
- name: Install project dependencies | |
run: yarn install | |
- name: Run typings script | |
run: yarn types | |
- name: Run build script | |
run: yarn build | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: packages | |
path: ./packages | |
retention-days: 7 | |
test: | |
name: Test | |
needs: build | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: yarn | |
- name: Download build artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: packages | |
path: ./packages | |
- name: Install project dependencies | |
run: yarn install | |
- name: Run tests | |
run: yarn test | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: coverage/lcov.info | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
needs: | |
- test | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: yarn | |
- name: Download build artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: packages | |
path: ./packages | |
- name: Install project dependencies | |
run: yarn install | |
- name: Create Release Pull Request or Publish to npm | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
version: yarn version | |
publish: yarn changeset publish | |
createGithubReleases: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |