Update jspsych config (#104) #66
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: release | |
on: | |
push: | |
paths: | |
- ".changeset/**" | |
- ".github/**" | |
- "packages/**" | |
- "package.json" | |
- "package-lock.json" | |
branches: | |
- main | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
cache: npm | |
- name: Install pango for NPM package "canvas" | |
run: sudo apt-get update && sudo apt-get install -y libpango1.0-dev | |
- name: Install dependencies | |
run: npm ci | |
- name: Create environment file | |
run: printenv > .env | |
env: | |
DEBUG: "false" | |
LOCAL_DOWNLOAD: "false" | |
- name: Build packages | |
run: npm run build | |
- name: Create Release Pull Request or Publish Packages | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
version: npx changeset version | |
publish: npx changeset publish | |
commit: "chore(release): version packages" | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |