fix: date set not recognising month february #315
This file contains hidden or 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: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v2 | |
| - name: use node 18 | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '18' | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm run compile | |
| - run: npm test | |
| - name: Publish to production | |
| run: npm run publish:nodes | |
| env: | |
| NODESCRIPT_API_URL: https://api.nodescript.dev | |
| NODESCRIPT_API_TOKEN: ${{ secrets.NODESCRIPT_API_TOKEN_PRODUCTION }} | |
| NODESCRIPT_WORKSPACE_ID: 1EbcWpqLBDxtKkqS |