Merge pull request #351 from dao-xyz/release-please--branches--master #1641
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
# This is a Github Workflow that runs tests on any push or pull request. | |
# If the tests pass and this is a push to the master branch it also runs Semantic Release. | |
name: CI | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
pull_request: | |
types: ['opened', 'reopened', 'synchronize'] | |
jobs: | |
test_push: | |
if: github.event_name == 'push' | |
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-22.04 ] | |
node-version: [20.x] | |
test_cmd: | |
- yarn test:part-1 | |
- yarn test:part-2 | |
- yarn test:part-3 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
- name: Install deps | |
run: | | |
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
yarn | |
npx playwright install-deps | |
- name: Build | |
run: | | |
yarn build | |
- name: Lint | |
run: yarn lint | |
- name: Tests | |
run: ${{matrix.test_cmd}} | |
test_pr: | |
if: github.event_name == 'pull_request' | |
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-22.04 ] | |
node-version: [20.x] | |
test_cmd: | |
- yarn test:part-1 | |
- yarn test:part-2 | |
- yarn test:part-3 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
- name: Install deps | |
run: | | |
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
yarn | |
npx playwright install-deps | |
- name: Build | |
run: | | |
yarn build | |
- name: Lint | |
run: yarn lint | |
- name: Tests | |
run: ${{matrix.test_cmd}} |