Skip to content

Merge pull request #164 from tanmen/dependabot/npm_and_yarn/typescrip… #252

Merge pull request #164 from tanmen/dependabot/npm_and_yarn/typescrip…

Merge pull request #164 from tanmen/dependabot/npm_and_yarn/typescrip… #252

Workflow file for this run

name: CI/CD
on:
push:
branches: [ main ]
pull_request: {}
jobs:
Test:
permissions:
checks: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- name: Install dependencies
run: yarn install --immutable
- run: yarn build
- run: yarn test --json --outputFile=result.json --testLocationInResults
- uses: ./
if: always()
with:
action-name: jest report
github-token: ${{ secrets.GITHUB_TOKEN }}