notes #4
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: ci | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
tags: ['*'] | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npx eslint . | |
pack: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npm pack | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: package | |
path: '*.tgz' | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npx prettier --check . | |
remark: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npx remark --frail . | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 16 | |
- 18 | |
# https://github.com/TypeStrong/ts-node/issues/1997 | |
# - 20 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npx playwright-core install --with-deps | |
- run: npm test update | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: fixtures node ${{ matrix.node-version }} | |
path: fixtures/ | |
if: always() | |
- uses: codecov/codecov-action@v3 | |
if: ${{ matrix.node-version == 20 }} | |
tsc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npx tsc | |
# release: | |
# runs-on: ubuntu-latest | |
# needs: | |
# - eslint | |
# - test | |
# - pack | |
# - prettier | |
# - remark | |
# - tsc | |
# if: startsWith(github.ref, 'refs/tags/') | |
# permissions: | |
# id-token: write | |
# steps: | |
# - uses: actions/setup-node@v3 | |
# with: | |
# node-version: 20 | |
# registry-url: https://registry.npmjs.org | |
# - uses: actions/download-artifact@v3 | |
# with: { name: package } | |
# - run: npm publish *.tgz --provenance | |
# env: | |
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |